Commit 1b19e9d9 authored by gaorui's avatar gaorui
Browse files

feat(app): chanage StartPay

parent b93920c1
fileFormatVersion: 2
guid: 68954ad80604b4901b195c36f9855ef1
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2 fileFormatVersion: 2
guid: c8a121e643821454ca939212ae84039e guid: 679f079e039494f3d808228848364635
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2
......
fileFormatVersion: 2
guid: 6bfefc7dc756641159ccbea6ca60d852
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
fileFormatVersion: 2 fileFormatVersion: 2
guid: 3f8639cdf110e47c39d70a11fefd7cac guid: dd96c961b73214cf0a9d7857e9433417
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 74863d08882ac4630a7994c2befee099 guid: e4b23c671991d4a08a765cd49bdd64d0
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2
......
fileFormatVersion: 2 fileFormatVersion: 2
guid: 961018ad1097642858806cffa50ef787 guid: 043e2ec79b0d243c5a7bbf97aef950ae
MonoImporter: MonoImporter:
externalObjects: {} externalObjects: {}
serializedVersion: 2 serializedVersion: 2
......
...@@ -11,8 +11,6 @@ public class InitResult ...@@ -11,8 +11,6 @@ public class InitResult
public int channelId; public int channelId;
} }
[System.Serializable] [System.Serializable]
public class LoginResult public class LoginResult
{ {
...@@ -37,14 +35,11 @@ public class GoodsInfo ...@@ -37,14 +35,11 @@ public class GoodsInfo
public string symbol;//仅 iOS返回 public string symbol;//仅 iOS返回
} }
[System.Serializable]
public class GoodsListWrapper
{
public List<GoodsInfo> array;
}
public class PlatformCallback : MonoBehaviour public class PlatformCallback : MonoBehaviour
{ {
// 添加字段用于保存商品列表
private List<GoodsInfo> _goodsLists;
// 单例实现,确保只有一个接收器实例 // 单例实现,确保只有一个接收器实例
public static PlatformCallback Instance { get; private set; } public static PlatformCallback Instance { get; private set; }
...@@ -156,14 +151,22 @@ public class PlatformCallback : MonoBehaviour ...@@ -156,14 +151,22 @@ public class PlatformCallback : MonoBehaviour
public void onPayGoodsList(string jsonStr) public void onPayGoodsList(string jsonStr)
{ {
NativeLogger.I("fastsdk_unity_result", "[Unity] onPayGoodsList called with message: " + jsonStr); NativeLogger.I("fastsdk_unity_result", "[Unity] onPayGoodsList called with message: " + jsonStr);
GoodsListWrapper wrapper = JsonConvert.DeserializeObject<GoodsListWrapper>(jsonStr); //goodsList = JsonConvert.DeserializeObject<List<GoodsInfo>(jsonStr);
// 方法一:直接解析为List<GoodsInfo>
_goodsLists = JsonConvert.DeserializeObject<List<GoodsInfo>>(jsonStr);
if (wrapper != null && wrapper.array != null)
{
NativeLogger.I("fastsdk_unity_result", $"[Unity] onPayGoodsList: {wrapper}");
if (_goodsLists != null && _goodsLists.Count!=0)
{
NativeLogger.I("fastsdk_unity_result", $"[Unity] onPayGoodsList: {_goodsLists}");
} }
} }
// 添加方法用于获取保存的商品列表
public static List<GoodsInfo> GetCachedGoodsList()
{
return Instance != null ? Instance._goodsLists : null;
}
public void onPaySuccess(string jsonStr) public void onPaySuccess(string jsonStr)
{ {
......
using System.Collections.Generic;
using Newtonsoft.Json; using Newtonsoft.Json;
public class PlayerInfo public class PlayerInfo
...@@ -54,30 +52,26 @@ public class PlayerInfo ...@@ -54,30 +52,26 @@ public class PlayerInfo
[JsonProperty("extra")] [JsonProperty("extra")]
public Dictionary<string, string> Extra { get; private set; } public string Extra { get; private set; }
public PlayerInfo()
{
Extra = new Dictionary<string, string>();
}
public void AddExtra(string key, int value) public void AddExtra(string key, int value)
{ {
if (string.IsNullOrEmpty(key)) return; if (string.IsNullOrEmpty(key)) return;
Extra[key] = CrateValue(value); Extra += key+":"+CrateValue(value)+",";
} }
public void AddExtra(string key, double value) public void AddExtra(string key, double value)
{ {
if (string.IsNullOrEmpty(key)) return; if (string.IsNullOrEmpty(key)) return;
Extra[key] = CrateValue(value); Extra += key + ":" + CrateValue(value) + ",";
} }
public void AddExtra(string key, string value) public void AddExtra(string key, string value)
{ {
if (string.IsNullOrEmpty(key) || value == null) return; if (string.IsNullOrEmpty(key) || value == null) return;
Extra[key] = CrateValue(value); Extra += key + ":" + CrateValue(value) + ",";
} }
private string CrateValue(int val) private string CrateValue(int val)
......
...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc) ...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release Branch: 2022.3/china_unity/release
Build type: Release Build type: Release
Batch mode: YES Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362) macOS version: Version 15.6.1 (Build 24G90)
Darwin version: 25.0.0 Darwin version: 24.6.0
Architecture: arm64 Architecture: arm64
Running under Rosetta: NO Running under Rosetta: NO
Available memory: 24576 MB Available memory: 32768 MB
Using pre-set license Using pre-set license
Pro License: YES Pro License: YES
...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS: ...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS:
-name -name
AssetImportWorker0 AssetImportWorker0
-projectPath -projectPath
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
-logFile -logFile
Logs/AssetImportWorker0.log Logs/AssetImportWorker0.log
-srvPort -srvPort
58762 61801
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo Successfully changed project path to: /Users/gr/Documents/UnityProject/Unity20251010Test
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8" "memorysetup-bucket-allocator-bucket-count=8"
...@@ -56,2080 +56,573 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo ...@@ -56,2080 +56,573 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] Target information: Player connection [8318886080] Target information:
Player connection [8778041344] * "[IP] 10.1.70.48 [Port] 0 [Flags] 2 [Guid] 1370636444 [EditorId] 1370636444 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 10.1.3.215 [Port] 0 [Flags] 2 [Guid] 4294102214 [EditorId] 4294102214 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] * "[IP] 169.254.100.34 [Port] 0 [Flags] 2 [Guid] 1370636444 [EditorId] 1370636444 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 169.254.124.201 [Port] 0 [Flags] 2 [Guid] 4294102214 [EditorId] 4294102214 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] Host joined multi-casting on [225.0.0.222:54997]... Player connection [8318886080] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]... Player connection [8318886080] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized. Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers. [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
Refreshing native plugins compatible for Editor in 14.97 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 13.12 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc) Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc)
[Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path /Users/fengchao/Desktop/UnityDemo/Assets [Subsystems] Discovering subsystems at path /Users/gr/Documents/UnityProject/Unity20251010Test/Assets
GfxDevice: creating device client; threaded=0; jobified=0 GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power) preferred device: Apple M2 Pro (high power)
Metal devices available: 1 Metal devices available: 1
0: Apple M2 (high power) 0: Apple M2 Pro (high power)
Using device Apple M2 (high power) Using device Apple M2 Pro (high power)
Initializing Metal device caps: Apple M2 Initializing Metal device caps: Apple M2 Pro
Initialize mono Initialize mono
Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed' Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed'
Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos' Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos'
Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc' Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56936 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56223
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.002439 seconds. Registered in 0.003127 seconds.
- Loaded All Assemblies, in 0.202 seconds - Loaded All Assemblies, in 0.205 seconds
[usbmuxd] Start listen thread [usbmuxd] Start listen thread
[usbmuxd] Listen thread started [usbmuxd] Listen thread started
[usbmuxd] Send listen message [usbmuxd] Send listen message
[usbmuxd] Attached: 3 00008101-001A715111B8001E
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Android Extension - Scanning For ADB Devices 81 ms
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.180 seconds - Finished resetting the current domain, in 0.278 seconds
Domain Reload Profiling: 382ms Domain Reload Profiling: 484ms
BeginReloadAssembly (69ms) BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (0ms) CreateAndSetChildDomain (0ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (26ms)
LoadAllAssembliesAndSetupDomain (82ms)
LoadAssemblies (69ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (80ms)
TypeCache.Refresh (79ms)
TypeCache.ScanAssembly (71ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms)
FinalizeReload (180ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (154ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (58ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (70ms)
ProcessInitializeOnLoadMethodAttributes (22ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms)
========================================================================
Worker process is ready to serve import requests
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.402 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.387 seconds
Domain Reload Profiling: 789ms
BeginReloadAssembly (62ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (9ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (18ms)
LoadAllAssembliesAndSetupDomain (296ms)
LoadAssemblies (215ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (113ms)
TypeCache.Refresh (99ms)
TypeCache.ScanAssembly (88ms)
ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (3ms)
FinalizeReload (388ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (305ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (167ms)
ProcessInitializeOnLoadMethodAttributes (85ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler
Launched and connected shader compiler UnityShaderCompiler after 0.03 seconds
Refreshing native plugins compatible for Editor in 1.99 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4413 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (49.8 KB). Loaded Objects now: 4883.
Memory consumption went from 162.1 MB to 162.1 MB.
Total: 5.789083 ms (FindLiveObjects: 0.142083 ms CreateObjectMapping: 0.083667 ms MarkObjects: 5.457833 ms DeleteObjects: 0.104792 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 4.20 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4883.
Memory consumption went from 88.7 MB to 88.7 MB.
Total: 5.629542 ms (FindLiveObjects: 0.155167 ms CreateObjectMapping: 0.073625 ms MarkObjects: 5.389875 ms DeleteObjects: 0.010667 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.96 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4883.
Memory consumption went from 88.2 MB to 88.2 MB.
Total: 5.234708 ms (FindLiveObjects: 0.129250 ms CreateObjectMapping: 0.063458 ms MarkObjects: 5.023875 ms DeleteObjects: 0.017541 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x17129b000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.288 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.703 seconds
Domain Reload Profiling: 991ms
BeginReloadAssembly (71ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (179ms)
LoadAssemblies (141ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (67ms)
TypeCache.Refresh (53ms)
TypeCache.ScanAssembly (44ms)
ScanForSourceGeneratedMonoScriptInfo (11ms)
ResolveRequiredComponents (3ms)
FinalizeReload (703ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (269ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (140ms)
ProcessInitializeOnLoadMethodAttributes (78ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.29 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4887.
Memory consumption went from 163.6 MB to 163.6 MB.
Total: 5.382208 ms (FindLiveObjects: 0.154000 ms CreateObjectMapping: 0.071375 ms MarkObjects: 5.118167 ms DeleteObjects: 0.037875 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.69 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4887.
Memory consumption went from 94.6 MB to 94.6 MB.
Total: 10.688666 ms (FindLiveObjects: 0.113875 ms CreateObjectMapping: 0.068292 ms MarkObjects: 10.492959 ms DeleteObjects: 0.013250 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Import Request.
Time since last request: 72134.045685 seconds.
path: Assets/Plugins/iOS/UnityBridge.mm
artifactKey: Guid(8a2bed7a3301d4300827ecb96648cd28) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/iOS/UnityBridge.mm using Guid(8a2bed7a3301d4300827ecb96648cd28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '41ae3d1054a83358de3fa48a8a808354') in 0.006105 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
========================================================================
Received Import Request.
Time since last request: 1.191188 seconds.
path: Assets/Plugins/iOS/UnityBridge.h
artifactKey: Guid(fbcc30c9db7014f8f8e136ddfd11516e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/iOS/UnityBridge.h using Guid(fbcc30c9db7014f8f8e136ddfd11516e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '2155b701ac82ce398c26948addf3f50f') in 0.000571 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
========================================================================
Received Import Request.
Time since last request: 35.804164 seconds.
path: Assets/Plugins/Editor
artifactKey: Guid(758ccc9bdb13143e48b0b6110a60e8ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Editor using Guid(758ccc9bdb13143e48b0b6110a60e8ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '2745bd9f459d9964892fe953a694acaa') in 0.000341 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x17129b000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.271 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.763 seconds
Domain Reload Profiling: 1034ms
BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (2ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (20ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (163ms)
LoadAssemblies (179ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (763ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (275ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.38 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4893.
Memory consumption went from 169.2 MB to 169.1 MB.
Total: 5.463959 ms (FindLiveObjects: 0.150500 ms CreateObjectMapping: 0.075583 ms MarkObjects: 5.206834 ms DeleteObjects: 0.030584 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 57.503321 seconds.
path: Assets/Scripts/sdk/core/HoolaiSdkManager.cs
artifactKey: Guid(ab62b7684d21a4ecc905ad6fd5c276a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/core/HoolaiSdkManager.cs using Guid(ab62b7684d21a4ecc905ad6fd5c276a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '331ad0f7f6d04865dfc6f51de99678a9') in 0.000935 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Import Request.
Time since last request: 7.081113 seconds.
path: Assets/Scripts/sdk/core/UnityMainThreadDispatcher.cs
artifactKey: Guid(961018ad1097642858806cffa50ef787) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/core/UnityMainThreadDispatcher.cs using Guid(961018ad1097642858806cffa50ef787) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '089c4b350c9701b84f25cd0fa1d05c57') in 0.000265 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.69 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4893.
Memory consumption went from 100.2 MB to 100.1 MB.
Total: 5.394167 ms (FindLiveObjects: 0.147000 ms CreateObjectMapping: 0.076125 ms MarkObjects: 5.157917 ms DeleteObjects: 0.012542 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 140.325606 seconds.
path: Assets/Plugins/iOS/UnityAppController.h
artifactKey: Guid(7c52c6bae4f6d42c296f0de9df536ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/iOS/UnityAppController.h using Guid(7c52c6bae4f6d42c296f0de9df536ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'c1b1f3071d5a1ef46a788b6522d10c46') in 0.005971 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
========================================================================
Received Import Request.
Time since last request: 47.106487 seconds.
path: Assets/Plugins/Editor/IOSPostBuildProcessor.cs
artifactKey: Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Editor/IOSPostBuildProcessor.cs using Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'a19a0fda4216baba8b46054e80efe1aa') in 0.000496 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Import Request.
Time since last request: 87.607495 seconds.
path: Assets/Scripts/sdk/core/AndroidSdkInterface.cs
artifactKey: Guid(3f8639cdf110e47c39d70a11fefd7cac) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/core/AndroidSdkInterface.cs using Guid(3f8639cdf110e47c39d70a11fefd7cac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '2aa63b83a92900cf5e7603aaf1656cae') in 0.000408 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.68 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4893.
Memory consumption went from 99.1 MB to 99.1 MB.
Total: 5.569000 ms (FindLiveObjects: 0.149667 ms CreateObjectMapping: 0.080541 ms MarkObjects: 5.328209 ms DeleteObjects: 0.010250 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 53.805457 seconds.
path: Assets/Scripts/sdk/ui/BtnManager.cs
artifactKey: Guid(789ca815eac2f468b94840a621f0b2e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/ui/BtnManager.cs using Guid(789ca815eac2f468b94840a621f0b2e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'e19a8be3f7139d385f036cd1d84dca17') in 0.000387 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Import Request.
Time since last request: 370.034110 seconds.
path: Assets/Scripts/sdk/core/IosSdkInterface.cs
artifactKey: Guid(74863d08882ac4630a7994c2befee099) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/core/IosSdkInterface.cs using Guid(74863d08882ac4630a7994c2befee099) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'b8b5cbb15dbeaf82c5d29ed7076e84a2') in 0.000353 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1736e7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.250 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.755 seconds
Domain Reload Profiling: 1004ms
BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (2ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (143ms)
LoadAssemblies (158ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (755ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (33ms)
ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.91 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4392 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4896.
Memory consumption went from 173.4 MB to 173.4 MB.
Total: 5.296042 ms (FindLiveObjects: 0.154250 ms CreateObjectMapping: 0.077875 ms MarkObjects: 5.035791 ms DeleteObjects: 0.027584 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1750af000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.235 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.462 seconds
Domain Reload Profiling: 697ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (15ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (130ms)
LoadAssemblies (144ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (16ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (462ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (285ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (32ms)
ProcessInitializeOnLoadAttributes (153ms)
ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.69 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4901.
Memory consumption went from 180.7 MB to 180.6 MB.
Total: 5.297084 ms (FindLiveObjects: 0.148209 ms CreateObjectMapping: 0.079708 ms MarkObjects: 5.036416 ms DeleteObjects: 0.032125 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 27.649660 seconds.
path: Assets/Plugins/Ios/IosSdkInterface.cs
artifactKey: Guid(62f26f30750e14ad4a189fbabfbabeca) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Ios/IosSdkInterface.cs using Guid(62f26f30750e14ad4a189fbabfbabeca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '7077fa9bfb4f96e54c82cdd59808881b') in 0.000840 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1750af000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.255 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.741 seconds
Domain Reload Profiling: 996ms
BeginReloadAssembly (70ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (146ms)
LoadAssemblies (165ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (10ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (4ms)
FinalizeReload (742ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (276ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (32ms)
ProcessInitializeOnLoadAttributes (145ms)
ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.27 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4905.
Memory consumption went from 187.3 MB to 187.3 MB.
Total: 5.535875 ms (FindLiveObjects: 0.154625 ms CreateObjectMapping: 0.077416 ms MarkObjects: 5.268667 ms DeleteObjects: 0.034500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1750af000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.307 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.742 seconds
Domain Reload Profiling: 1049ms
BeginReloadAssembly (75ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (21ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (192ms)
LoadAssemblies (206ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms)
TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (742ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (278ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (146ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.51 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4910.
Memory consumption went from 193.9 MB to 193.9 MB.
Total: 5.316958 ms (FindLiveObjects: 0.151334 ms CreateObjectMapping: 0.083666 ms MarkObjects: 5.046459 ms DeleteObjects: 0.034791 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.246 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.466 seconds
Domain Reload Profiling: 713ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (15ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (141ms)
LoadAssemblies (153ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (5ms)
ResolveRequiredComponents (3ms)
FinalizeReload (467ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (33ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (87ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.56 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4913.
Memory consumption went from 200.8 MB to 200.8 MB.
Total: 5.267500 ms (FindLiveObjects: 0.148375 ms CreateObjectMapping: 0.075583 ms MarkObjects: 5.008333 ms DeleteObjects: 0.034709 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.71 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.0 KB). Loaded Objects now: 4913.
Memory consumption went from 132.5 MB to 132.5 MB.
Total: 5.598125 ms (FindLiveObjects: 0.142417 ms CreateObjectMapping: 0.083833 ms MarkObjects: 5.358792 ms DeleteObjects: 0.012666 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.70 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.0 KB). Loaded Objects now: 4913.
Memory consumption went from 130.8 MB to 130.8 MB.
Total: 6.800500 ms (FindLiveObjects: 0.162375 ms CreateObjectMapping: 0.072875 ms MarkObjects: 6.548792 ms DeleteObjects: 0.016208 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 859.157382 seconds.
path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '47688a146d962e609829166b99c4c7c9') in 0.009526 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.82 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4913.
Memory consumption went from 129.6 MB to 129.6 MB.
Total: 6.050875 ms (FindLiveObjects: 0.160708 ms CreateObjectMapping: 0.076250 ms MarkObjects: 5.794833 ms DeleteObjects: 0.018917 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
[usbmuxd] Detached: 3 00008101-001A715111B8001E
========================================================================
Received Import Request.
Time since last request: 6371.813697 seconds.
path: Assets/Scripts/sdk/data/PlayerInfo.cs
artifactKey: Guid(577112532e4464953b5b9594c275ae11) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/data/PlayerInfo.cs using Guid(577112532e4464953b5b9594c275ae11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '4ee7d579bfd7ad7298f5b75dc72a2ad8') in 0.004412 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Import Request.
Time since last request: 18.213965 seconds.
path: Assets/Plugins/Ios/UnityBridge.mm
artifactKey: Guid(8a2bed7a3301d4300827ecb96648cd28) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Ios/UnityBridge.mm using Guid(8a2bed7a3301d4300827ecb96648cd28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '5769c7a2bd4ab4a3e73a82935c9d1763') in 0.014745 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
========================================================================
Received Import Request.
Time since last request: 161.850420 seconds.
path: Assets/Plugins/Ios/UnityAppController.mm
artifactKey: Guid(12d3c24cb8df145abb64f72b45206b99) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Ios/UnityAppController.mm using Guid(12d3c24cb8df145abb64f72b45206b99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '7613b763edb0f57746e61416ccceb2af') in 0.001026 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.315 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.800 seconds
Domain Reload Profiling: 1115ms
BeginReloadAssembly (82ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (195ms)
LoadAssemblies (211ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (800ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (33ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (87ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 4.08 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4392 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.2 KB). Loaded Objects now: 4916.
Memory consumption went from 202.5 MB to 202.5 MB.
Total: 5.607250 ms (FindLiveObjects: 0.155292 ms CreateObjectMapping: 0.088667 ms MarkObjects: 5.319375 ms DeleteObjects: 0.043083 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.227 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.462 seconds
Domain Reload Profiling: 688ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (27ms)
LoadAllAssembliesAndSetupDomain (121ms) LoadAllAssembliesAndSetupDomain (84ms)
LoadAssemblies (136ms) LoadAssemblies (70ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (16ms) AnalyzeDomain (82ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (81ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (72ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (0ms)
FinalizeReload (462ms) FinalizeReload (278ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (282ms) SetupLoadedEditorAssemblies (252ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (172ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (33ms) BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (151ms) ProcessInitializeOnLoadAttributes (55ms)
ProcessInitializeOnLoadMethodAttributes (81ms) ProcessInitializeOnLoadMethodAttributes (21ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (0ms)
Refreshing native plugins compatible for Editor in 2.33 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4921.
Memory consumption went from 209.8 MB to 209.8 MB.
Total: 5.640417 ms (FindLiveObjects: 0.158709 ms CreateObjectMapping: 0.077083 ms MarkObjects: 5.369000 ms DeleteObjects: 0.035125 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Worker process is ready to serve import requests
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.226 seconds - Loaded All Assemblies, in 0.402 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.739 seconds - Finished resetting the current domain, in 0.372 seconds
Domain Reload Profiling: 965ms Domain Reload Profiling: 774ms
BeginReloadAssembly (68ms) BeginReloadAssembly (63ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (15ms) CreateAndSetChildDomain (11ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (17ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (6ms)
initialDomainReloadingComplete (12ms) initialDomainReloadingComplete (17ms)
LoadAllAssembliesAndSetupDomain (121ms) LoadAllAssembliesAndSetupDomain (299ms)
LoadAssemblies (137ms) LoadAssemblies (216ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (113ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (99ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (86ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (740ms) FinalizeReload (372ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms) SetupLoadedEditorAssemblies (289ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms) BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (152ms) ProcessInitializeOnLoadAttributes (154ms)
ProcessInitializeOnLoadMethodAttributes (85ms) ProcessInitializeOnLoadMethodAttributes (80ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.33 ms, found 2 plugins. Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler
Launched and connected shader compiler UnityShaderCompiler after 0.05 seconds
Refreshing native plugins compatible for Editor in 1.79 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0) Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4926. Unloading 27 unused Assets / (50.0 KB). Loaded Objects now: 4887.
Memory consumption went from 216.8 MB to 216.8 MB. Memory consumption went from 158.8 MB to 158.7 MB.
Total: 5.330458 ms (FindLiveObjects: 0.156875 ms CreateObjectMapping: 0.076125 ms MarkObjects: 5.065708 ms DeleteObjects: 0.031208 ms) Total: 4.987708 ms (FindLiveObjects: 0.099167 ms CreateObjectMapping: 0.067833 ms MarkObjects: 4.749750 ms DeleteObjects: 0.070667 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.33 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.225 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.462 seconds
Domain Reload Profiling: 687ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (120ms)
LoadAssemblies (135ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (462ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (283ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (32ms)
ProcessInitializeOnLoadAttributes (149ms)
ProcessInitializeOnLoadMethodAttributes (86ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.43 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.2 KB). Loaded Objects now: 4929. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4887.
Memory consumption went from 223.8 MB to 223.8 MB. Memory consumption went from 86.1 MB to 86.1 MB.
Total: 5.508791 ms (FindLiveObjects: 0.162333 ms CreateObjectMapping: 0.080000 ms MarkObjects: 5.229667 ms DeleteObjects: 0.035958 ms) Total: 4.854000 ms (FindLiveObjects: 0.133666 ms CreateObjectMapping: 0.077542 ms MarkObjects: 4.630833 ms DeleteObjects: 0.011708 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized Thread 0x17dc3b000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.249 seconds - Loaded All Assemblies, in 0.270 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.715 seconds - Finished resetting the current domain, in 0.744 seconds
Domain Reload Profiling: 964ms Domain Reload Profiling: 1014ms
BeginReloadAssembly (69ms) BeginReloadAssembly (82ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (17ms) CreateAndSetChildDomain (29ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (143ms) LoadAllAssembliesAndSetupDomain (152ms)
LoadAssemblies (162ms) LoadAssemblies (163ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (10ms) AnalyzeDomain (15ms)
TypeCache.Refresh (6ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (715ms) FinalizeReload (744ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (272ms) SetupLoadedEditorAssemblies (284ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (143ms) ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (80ms) ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.46 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.08 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4933. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4891.
Memory consumption went from 230.8 MB to 230.7 MB. Memory consumption went from 160.9 MB to 160.8 MB.
Total: 5.100167 ms (FindLiveObjects: 0.152125 ms CreateObjectMapping: 0.093333 ms MarkObjects: 4.817583 ms DeleteObjects: 0.036291 ms) Total: 5.180917 ms (FindLiveObjects: 0.138625 ms CreateObjectMapping: 0.073917 ms MarkObjects: 4.935458 ms DeleteObjects: 0.032250 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized Thread 0x33ac87000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.227 seconds - Loaded All Assemblies, in 0.253 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.469 seconds - Finished resetting the current domain, in 0.722 seconds
Domain Reload Profiling: 696ms Domain Reload Profiling: 975ms
BeginReloadAssembly (68ms) BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms) CreateAndSetChildDomain (18ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (122ms) LoadAllAssembliesAndSetupDomain (151ms)
LoadAssemblies (137ms) LoadAssemblies (163ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (15ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (469ms) FinalizeReload (722ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (289ms) SetupLoadedEditorAssemblies (282ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms) BeforeProcessingInitializeOnLoad (39ms)
ProcessInitializeOnLoadAttributes (154ms) ProcessInitializeOnLoadAttributes (142ms)
ProcessInitializeOnLoadMethodAttributes (85ms) ProcessInitializeOnLoadMethodAttributes (81ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.33 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.96 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.2 KB). Loaded Objects now: 4936. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4895.
Memory consumption went from 237.7 MB to 237.7 MB. Memory consumption went from 167.7 MB to 167.7 MB.
Total: 5.345916 ms (FindLiveObjects: 0.157292 ms CreateObjectMapping: 0.071458 ms MarkObjects: 5.079333 ms DeleteObjects: 0.037208 ms) Total: 5.209917 ms (FindLiveObjects: 0.128084 ms CreateObjectMapping: 0.070791 ms MarkObjects: 4.980458 ms DeleteObjects: 0.030208 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized Thread 0x17dc3b000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.230 seconds - Loaded All Assemblies, in 0.222 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.729 seconds - Finished resetting the current domain, in 0.739 seconds
Domain Reload Profiling: 959ms Domain Reload Profiling: 960ms
BeginReloadAssembly (70ms) BeginReloadAssembly (67ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (123ms) LoadAllAssembliesAndSetupDomain (119ms)
LoadAssemblies (139ms) LoadAssemblies (129ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (16ms) AnalyzeDomain (15ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (1ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (4ms)
FinalizeReload (729ms) FinalizeReload (739ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (273ms) SetupLoadedEditorAssemblies (273ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (32ms) BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (143ms) ProcessInitializeOnLoadAttributes (138ms)
ProcessInitializeOnLoadMethodAttributes (83ms) ProcessInitializeOnLoadMethodAttributes (80ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.31 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.94 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4942. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4899.
Memory consumption went from 244.8 MB to 244.8 MB. Memory consumption went from 174.7 MB to 174.7 MB.
Total: 5.306458 ms (FindLiveObjects: 0.161250 ms CreateObjectMapping: 0.079000 ms MarkObjects: 5.032750 ms DeleteObjects: 0.032875 ms) Total: 4.771375 ms (FindLiveObjects: 0.141875 ms CreateObjectMapping: 0.076750 ms MarkObjects: 4.523500 ms DeleteObjects: 0.026292 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.69 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.24 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4942. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4899.
Memory consumption went from 176.6 MB to 176.6 MB. Memory consumption went from 102.1 MB to 102.1 MB.
Total: 5.750500 ms (FindLiveObjects: 0.146416 ms CreateObjectMapping: 0.081542 ms MarkObjects: 5.509125 ms DeleteObjects: 0.013208 ms) Total: 10.531667 ms (FindLiveObjects: 0.204500 ms CreateObjectMapping: 0.070500 ms MarkObjects: 10.203459 ms DeleteObjects: 0.052666 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized Thread 0x17de47000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.265 seconds - Loaded All Assemblies, in 0.287 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.742 seconds - Finished resetting the current domain, in 0.766 seconds
Domain Reload Profiling: 1007ms Domain Reload Profiling: 1054ms
BeginReloadAssembly (75ms) BeginReloadAssembly (83ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (21ms) CreateAndSetChildDomain (27ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (152ms)
LoadAssemblies (169ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (3ms)
ResolveRequiredComponents (3ms)
FinalizeReload (742ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (285ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (85ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.74 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4946.
Memory consumption went from 251.7 MB to 251.6 MB.
Total: 5.739250 ms (FindLiveObjects: 0.166709 ms CreateObjectMapping: 0.096334 ms MarkObjects: 5.438250 ms DeleteObjects: 0.037500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
[usbmuxd] Attached: 4 00008101-001A715111B8001E
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.306 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.805 seconds
Domain Reload Profiling: 1111ms
BeginReloadAssembly (86ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (24ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms) initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (182ms) LoadAllAssembliesAndSetupDomain (167ms)
LoadAssemblies (200ms) LoadAssemblies (175ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms) AnalyzeDomain (25ms)
TypeCache.Refresh (9ms) TypeCache.Refresh (12ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (7ms)
ResolveRequiredComponents (4ms) ResolveRequiredComponents (5ms)
FinalizeReload (805ms) FinalizeReload (766ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (280ms) SetupLoadedEditorAssemblies (289ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (2ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (33ms) BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (146ms) ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (84ms) ProcessInitializeOnLoadMethodAttributes (90ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (3ms) AwakeInstancesAfterBackupRestoration (3ms)
Refreshing native plugins compatible for Editor in 2.47 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4950. Unloading 21 unused Assets / (31.1 KB). Loaded Objects now: 4903.
Memory consumption went from 253.6 MB to 253.5 MB. Memory consumption went from 176.6 MB to 176.6 MB.
Total: 6.312125 ms (FindLiveObjects: 0.154042 ms CreateObjectMapping: 0.086583 ms MarkObjects: 6.016500 ms DeleteObjects: 0.054625 ms) Total: 5.337500 ms (FindLiveObjects: 0.146625 ms CreateObjectMapping: 0.082208 ms MarkObjects: 5.074667 ms DeleteObjects: 0.033750 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Import Request.
Refreshing native plugins compatible for Editor in 3.07 ms, found 2 plugins. Time since last request: 1855694.347608 seconds.
Preloading 0 native plugins for Editor in 0.00 ms. path: Assets/Plugins/Android/libs/launcher-release.aar
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) artifactKey: Guid(d4f9c53afafed4c1d86aaefb24e1d773) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4950. Start importing Assets/Plugins/Android/libs/launcher-release.aar using Guid(d4f9c53afafed4c1d86aaefb24e1d773) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
Memory consumption went from 185.2 MB to 185.2 MB. -> (artifact id: '5ff145ce06938c8f1e9845209dbe2f2e') in 0.015188 seconds
Total: 5.513417 ms (FindLiveObjects: 0.193166 ms CreateObjectMapping: 0.094084 ms MarkObjects: 5.211458 ms DeleteObjects: 0.014250 ms) Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 1
Prepare: number of updated asset objects reloaded= 0 ========================================================================
AssetImportParameters requested are different than current active one (requested -> active): Received Import Request.
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358 Time since last request: 857.622463 seconds.
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> path: Assets/Plugins/Android/libs/launcher-release.aar
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 -> artifactKey: Guid(d4f9c53afafed4c1d86aaefb24e1d773) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 -> Start importing Assets/Plugins/Android/libs/launcher-release.aar using Guid(d4f9c53afafed4c1d86aaefb24e1d773) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> -> (artifact id: '5269750c3dd59b8a462d53fdd528bf79') in 0.001801 seconds
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> Number of updated asset objects reloaded before import = 0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 -> Number of asset objects unloaded after import = 1
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.32 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x172c23000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.342 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.766 seconds
Domain Reload Profiling: 1108ms
BeginReloadAssembly (109ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (29ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (21ms)
LoadAllAssembliesAndSetupDomain (186ms)
LoadAssemblies (220ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (766ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (282ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.41 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.2 KB). Loaded Objects now: 4953. Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4904.
Memory consumption went from 257.8 MB to 257.7 MB. Memory consumption went from 106.1 MB to 106.1 MB.
Total: 5.494083 ms (FindLiveObjects: 0.178875 ms CreateObjectMapping: 0.085500 ms MarkObjects: 5.188750 ms DeleteObjects: 0.040292 ms) Total: 10.341875 ms (FindLiveObjects: 0.227959 ms CreateObjectMapping: 0.068125 ms MarkObjects: 10.002375 ms DeleteObjects: 0.042958 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.99 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.0 KB). Loaded Objects now: 4953. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4904.
Memory consumption went from 189.5 MB to 189.4 MB. Memory consumption went from 106.1 MB to 106.1 MB.
Total: 5.743750 ms (FindLiveObjects: 0.159292 ms CreateObjectMapping: 0.091625 ms MarkObjects: 5.478000 ms DeleteObjects: 0.014500 ms) Total: 5.251667 ms (FindLiveObjects: 0.116708 ms CreateObjectMapping: 0.055750 ms MarkObjects: 5.068042 ms DeleteObjects: 0.010875 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Import Request.
Time since last request: 19999.686370 seconds.
path: Assets/Scripts/sdk/core/HoolaiSdkManager.cs
artifactKey: Guid(ab62b7684d21a4ecc905ad6fd5c276a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Scripts/sdk/core/HoolaiSdkManager.cs using Guid(ab62b7684d21a4ecc905ad6fd5c276a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'ef030737f46d9c7d4c539531c1672c87') in 0.012312 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 3.04 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 0 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4953. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4904.
Memory consumption went from 185.6 MB to 185.6 MB. Memory consumption went from 105.7 MB to 105.7 MB.
Total: 10.360625 ms (FindLiveObjects: 0.325042 ms CreateObjectMapping: 0.086458 ms MarkObjects: 9.891083 ms DeleteObjects: 0.057792 ms) Total: 4.824875 ms (FindLiveObjects: 0.115666 ms CreateObjectMapping: 0.056167 ms MarkObjects: 4.641667 ms DeleteObjects: 0.011083 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc) ...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release Branch: 2022.3/china_unity/release
Build type: Release Build type: Release
Batch mode: YES Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362) macOS version: Version 15.6.1 (Build 24G90)
Darwin version: 25.0.0 Darwin version: 24.6.0
Architecture: arm64 Architecture: arm64
Running under Rosetta: NO Running under Rosetta: NO
Available memory: 24576 MB Available memory: 32768 MB
Using pre-set license Using pre-set license
Pro License: YES Pro License: YES
...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS: ...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS:
-name -name
AssetImportWorker0 AssetImportWorker0
-projectPath -projectPath
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
-logFile -logFile
Logs/AssetImportWorker0.log Logs/AssetImportWorker0.log
-srvPort -srvPort
60069 50701
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo Successfully changed project path to: /Users/gr/Documents/UnityProject/Unity20251010Test
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8" "memorysetup-bucket-allocator-bucket-count=8"
...@@ -56,75 +56,77 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo ...@@ -56,75 +56,77 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] Target information: Player connection [8318886080] Target information:
Player connection [8778041344] * "[IP] 10.1.70.48 [Port] 0 [Flags] 2 [Guid] 700262597 [EditorId] 700262597 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 10.1.3.215 [Port] 0 [Flags] 2 [Guid] 1673804042 [EditorId] 1673804042 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] * "[IP] 169.254.82.111 [Port] 0 [Flags] 2 [Guid] 700262597 [EditorId] 700262597 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 169.254.124.201 [Port] 0 [Flags] 2 [Guid] 1673804042 [EditorId] 1673804042 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] Host joined multi-casting on [225.0.0.222:54997]... Player connection [8318886080] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]... Player connection [8318886080] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized. Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers. [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
Refreshing native plugins compatible for Editor in 14.39 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 13.79 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc) Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc)
[Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path /Users/fengchao/Desktop/UnityDemo/Assets [Subsystems] Discovering subsystems at path /Users/gr/Documents/UnityProject/Unity20251010Test/Assets
GfxDevice: creating device client; threaded=0; jobified=0 GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power) preferred device: Apple M2 Pro (high power)
Metal devices available: 1 Metal devices available: 1
0: Apple M2 (high power) 0: Apple M2 Pro (high power)
Using device Apple M2 (high power) Using device Apple M2 Pro (high power)
Initializing Metal device caps: Apple M2 Initializing Metal device caps: Apple M2 Pro
Initialize mono Initialize mono
Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed' Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed'
Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos' Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos'
Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc' Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56388 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56063
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.001509 seconds. Registered in 0.004055 seconds.
- Loaded All Assemblies, in 0.258 seconds - Loaded All Assemblies, in 0.208 seconds
[usbmuxd] Start listen thread [usbmuxd] Start listen thread
[usbmuxd] Listen thread started [usbmuxd] Listen thread started
[usbmuxd] Send listen message [usbmuxd] Send listen message
[usbmuxd] Attached: 4 00008101-001A715111B8001E
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Android Extension - Scanning For ADB Devices 68 ms
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.204 seconds - Finished resetting the current domain, in 0.262 seconds
Domain Reload Profiling: 461ms Domain Reload Profiling: 470ms
BeginReloadAssembly (93ms) BeginReloadAssembly (71ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (0ms) CreateAndSetChildDomain (0ms)
RebuildCommonClasses (22ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (28ms) initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (107ms) LoadAllAssembliesAndSetupDomain (83ms)
LoadAssemblies (93ms) LoadAssemblies (72ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (105ms) AnalyzeDomain (82ms)
TypeCache.Refresh (103ms) TypeCache.Refresh (81ms)
TypeCache.ScanAssembly (89ms) TypeCache.ScanAssembly (72ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms) ResolveRequiredComponents (0ms)
FinalizeReload (204ms) FinalizeReload (263ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (176ms) SetupLoadedEditorAssemblies (236ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (66ms) InitializePlatformSupportModulesInManaged (157ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms) BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (81ms) ProcessInitializeOnLoadAttributes (54ms)
ProcessInitializeOnLoadMethodAttributes (23ms) ProcessInitializeOnLoadMethodAttributes (21ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
...@@ -134,52 +136,53 @@ Worker process is ready to serve import requests ...@@ -134,52 +136,53 @@ Worker process is ready to serve import requests
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.408 seconds - Loaded All Assemblies, in 0.415 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.385 seconds - Finished resetting the current domain, in 0.381 seconds
Domain Reload Profiling: 792ms Domain Reload Profiling: 796ms
BeginReloadAssembly (67ms) BeginReloadAssembly (67ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (10ms) CreateAndSetChildDomain (11ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (20ms) initialDomainReloadingComplete (19ms)
LoadAllAssembliesAndSetupDomain (295ms) LoadAllAssembliesAndSetupDomain (304ms)
LoadAssemblies (211ms) LoadAssemblies (218ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (117ms) AnalyzeDomain (119ms)
TypeCache.Refresh (103ms) TypeCache.Refresh (104ms)
TypeCache.ScanAssembly (90ms) TypeCache.ScanAssembly (90ms)
ScanForSourceGeneratedMonoScriptInfo (10ms) ScanForSourceGeneratedMonoScriptInfo (11ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (385ms) FinalizeReload (381ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (305ms) SetupLoadedEditorAssemblies (297ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms) BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (168ms) ProcessInitializeOnLoadAttributes (157ms)
ProcessInitializeOnLoadMethodAttributes (87ms) ProcessInitializeOnLoadMethodAttributes (86ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler
Launched and connected shader compiler UnityShaderCompiler after 0.18 seconds Launched and connected shader compiler UnityShaderCompiler after 0.03 seconds
Refreshing native plugins compatible for Editor in 2.51 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.10 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4414 Unused Serialized files (Serialized files now loaded: 0) Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (49.7 KB). Loaded Objects now: 4885. Unloading 27 unused Assets / (49.9 KB). Loaded Objects now: 4887.
Memory consumption went from 162.2 MB to 162.2 MB. Memory consumption went from 158.4 MB to 158.4 MB.
Total: 6.205500 ms (FindLiveObjects: 0.155167 ms CreateObjectMapping: 0.076583 ms MarkObjects: 5.681916 ms DeleteObjects: 0.291333 ms) Total: 5.067542 ms (FindLiveObjects: 0.117291 ms CreateObjectMapping: 0.073292 ms MarkObjects: 4.784292 ms DeleteObjects: 0.092209 ms)
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
...@@ -195,634 +198,861 @@ AssetImportParameters requested are different than current active one (requested ...@@ -195,634 +198,861 @@ AssetImportParameters requested are different than current active one (requested
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== ========================================================================
Received Import Request.
Time since last request: 1916095.540102 seconds.
path: Assets/Plugins/Android/libs
artifactKey: Guid(d4e6c9bc34f424c87b3fcceedebe73c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Android/libs using Guid(d4e6c9bc34f424c87b3fcceedebe73c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
-> (artifact id: 'd37760836d07c33c6c6f93c05b2d2886') in 0.001077 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized Thread 0x17bbc7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.248 seconds - Loaded All Assemblies, in 0.307 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.469 seconds - Finished resetting the current domain, in 0.750 seconds
Domain Reload Profiling: 717ms Domain Reload Profiling: 1057ms
BeginReloadAssembly (87ms) BeginReloadAssembly (72ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (2ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (31ms) CreateAndSetChildDomain (22ms)
RebuildCommonClasses (20ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (123ms) LoadAllAssembliesAndSetupDomain (199ms)
LoadAssemblies (138ms) LoadAssemblies (207ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (16ms) AnalyzeDomain (21ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (13ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (469ms) FinalizeReload (750ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (284ms) SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (82ms) ProcessInitializeOnLoadMethodAttributes (86ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.21 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.93 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4889. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4891.
Memory consumption went from 164.7 MB to 164.6 MB. Memory consumption went from 160.4 MB to 160.4 MB.
Total: 5.317917 ms (FindLiveObjects: 0.158583 ms CreateObjectMapping: 0.092875 ms MarkObjects: 5.035958 ms DeleteObjects: 0.030000 ms) Total: 5.105250 ms (FindLiveObjects: 0.130250 ms CreateObjectMapping: 0.079791 ms MarkObjects: 4.864125 ms DeleteObjects: 0.030458 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
Received Import Request. custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
Time since last request: 105801.980925 seconds. custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
path: Assets/Plugins/Editor/IOSPostBuildProcessor.cs
artifactKey: Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Editor/IOSPostBuildProcessor.cs using Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: '266689eb5c854d29280aa03b617471d4') in 0.001608 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 5.69 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.266 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.758 seconds
Domain Reload Profiling: 1024ms
BeginReloadAssembly (75ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (24ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (154ms)
LoadAssemblies (168ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (758ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (275ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (78ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.71 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4893. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4891.
Memory consumption went from 171.3 MB to 171.2 MB. Memory consumption went from 92.2 MB to 92.2 MB.
Total: 5.363417 ms (FindLiveObjects: 0.165208 ms CreateObjectMapping: 0.083542 ms MarkObjects: 5.081417 ms DeleteObjects: 0.032708 ms) Total: 5.455458 ms (FindLiveObjects: 0.134000 ms CreateObjectMapping: 0.070083 ms MarkObjects: 5.237125 ms DeleteObjects: 0.014083 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
Received Import Request. custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
Time since last request: 8.100545 seconds. custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
path: Assets/Plugins/Editor/IOSPostBuildProcessor.cs
artifactKey: Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Editor/IOSPostBuildProcessor.cs using Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'bdf8ae66645415926eee54a130f3d5f6') in 0.001171 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized Thread 0x16b637000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.235 seconds - Loaded All Assemblies, in 0.293 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.464 seconds - Finished resetting the current domain, in 0.744 seconds
Domain Reload Profiling: 698ms Domain Reload Profiling: 1037ms
BeginReloadAssembly (75ms) BeginReloadAssembly (71ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (17ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (121ms) LoadAllAssembliesAndSetupDomain (187ms)
LoadAssemblies (137ms) LoadAssemblies (200ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms) AnalyzeDomain (16ms)
TypeCache.Refresh (6ms) TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (464ms) FinalizeReload (744ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms) SetupLoadedEditorAssemblies (283ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (151ms) ProcessInitializeOnLoadAttributes (142ms)
ProcessInitializeOnLoadMethodAttributes (83ms) ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.24 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.97 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4897. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4895.
Memory consumption went from 178.3 MB to 178.3 MB. Memory consumption went from 166.4 MB to 166.4 MB.
Total: 5.644708 ms (FindLiveObjects: 0.154791 ms CreateObjectMapping: 0.085708 ms MarkObjects: 5.367959 ms DeleteObjects: 0.035583 ms) Total: 5.029208 ms (FindLiveObjects: 0.135750 ms CreateObjectMapping: 0.075875 ms MarkObjects: 4.778875 ms DeleteObjects: 0.038250 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.80 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 5.77 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4897. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 110.1 MB to 110.1 MB. Memory consumption went from 98.1 MB to 98.1 MB.
Total: 6.606708 ms (FindLiveObjects: 0.154917 ms CreateObjectMapping: 0.081542 ms MarkObjects: 6.357333 ms DeleteObjects: 0.012458 ms) Total: 5.428625 ms (FindLiveObjects: 0.124667 ms CreateObjectMapping: 0.064750 ms MarkObjects: 5.227333 ms DeleteObjects: 0.011417 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x16f54f000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.300 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.758 seconds
Domain Reload Profiling: 1058ms
BeginReloadAssembly (104ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (45ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (158ms)
LoadAssemblies (177ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (758ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.23 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4901.
Memory consumption went from 184.9 MB to 184.9 MB.
Total: 5.749834 ms (FindLiveObjects: 0.171208 ms CreateObjectMapping: 0.082959 ms MarkObjects: 5.451666 ms DeleteObjects: 0.043209 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.17 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x16f54f000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.242 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.730 seconds
Domain Reload Profiling: 971ms
BeginReloadAssembly (70ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (134ms)
LoadAssemblies (149ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (730ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.66 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 191.7 MB to 191.7 MB. Memory consumption went from 97.3 MB to 97.3 MB.
Total: 5.688750 ms (FindLiveObjects: 0.161333 ms CreateObjectMapping: 0.093542 ms MarkObjects: 5.398959 ms DeleteObjects: 0.034417 ms) Total: 5.711417 ms (FindLiveObjects: 0.144125 ms CreateObjectMapping: 0.080208 ms MarkObjects: 5.465500 ms DeleteObjects: 0.021000 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.82 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.09 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 123.4 MB to 123.3 MB. Memory consumption went from 96.5 MB to 96.5 MB.
Total: 5.378083 ms (FindLiveObjects: 0.142375 ms CreateObjectMapping: 0.079708 ms MarkObjects: 5.142584 ms DeleteObjects: 0.012958 ms) Total: 5.011625 ms (FindLiveObjects: 0.114709 ms CreateObjectMapping: 0.055584 ms MarkObjects: 4.820041 ms DeleteObjects: 0.020750 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 3.02 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.11 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 122.2 MB to 122.2 MB. Memory consumption went from 96.2 MB to 96.2 MB.
Total: 19.151875 ms (FindLiveObjects: 0.239875 ms CreateObjectMapping: 0.103959 ms MarkObjects: 18.740750 ms DeleteObjects: 0.066959 ms) Total: 6.282042 ms (FindLiveObjects: 0.154000 ms CreateObjectMapping: 0.078708 ms MarkObjects: 6.022083 ms DeleteObjects: 0.026875 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized Thread 0x16b637000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.337 seconds - Loaded All Assemblies, in 0.281 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.854 seconds - Finished resetting the current domain, in 0.750 seconds
Domain Reload Profiling: 1191ms Domain Reload Profiling: 1031ms
BeginReloadAssembly (93ms) BeginReloadAssembly (79ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (29ms) CreateAndSetChildDomain (25ms)
RebuildCommonClasses (21ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (8ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (25ms) initialDomainReloadingComplete (14ms)
LoadAllAssembliesAndSetupDomain (191ms) LoadAllAssembliesAndSetupDomain (163ms)
LoadAssemblies (211ms) LoadAssemblies (176ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms) AnalyzeDomain (17ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms) ResolveRequiredComponents (4ms)
FinalizeReload (854ms) FinalizeReload (751ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (370ms) SetupLoadedEditorAssemblies (276ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (201ms) ProcessInitializeOnLoadAttributes (141ms)
ProcessInitializeOnLoadMethodAttributes (114ms) ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.75 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.23 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4909. Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4899.
Memory consumption went from 196.5 MB to 196.5 MB. Memory consumption went from 171.5 MB to 171.5 MB.
Total: 5.670958 ms (FindLiveObjects: 0.155750 ms CreateObjectMapping: 0.074666 ms MarkObjects: 5.401500 ms DeleteObjects: 0.038250 ms) Total: 5.319000 ms (FindLiveObjects: 0.137833 ms CreateObjectMapping: 0.071292 ms MarkObjects: 5.075458 ms DeleteObjects: 0.034000 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.04 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.226 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.474 seconds
Domain Reload Profiling: 700ms
BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (120ms)
LoadAssemblies (136ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (475ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (152ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.20 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4913. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4899.
Memory consumption went from 203.3 MB to 203.3 MB. Memory consumption went from 103.2 MB to 103.2 MB.
Total: 5.239833 ms (FindLiveObjects: 0.155042 ms CreateObjectMapping: 0.085541 ms MarkObjects: 4.966792 ms DeleteObjects: 0.031916 ms) Total: 5.279042 ms (FindLiveObjects: 0.118125 ms CreateObjectMapping: 0.065417 ms MarkObjects: 5.080083 ms DeleteObjects: 0.014958 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized Thread 0x16b637000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.340 seconds - Loaded All Assemblies, in 0.253 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.770 seconds - Finished resetting the current domain, in 0.771 seconds
Domain Reload Profiling: 1109ms Domain Reload Profiling: 1023ms
BeginReloadAssembly (72ms) BeginReloadAssembly (71ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (20ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (27ms) RebuildCommonClasses (17ms)
RebuildNativeTypeToScriptingClass (28ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (30ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (182ms) LoadAllAssembliesAndSetupDomain (145ms)
LoadAssemblies (197ms) LoadAssemblies (160ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms) AnalyzeDomain (14ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (3ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (770ms) FinalizeReload (771ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (278ms) SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms) BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (144ms) ProcessInitializeOnLoadAttributes (139ms)
ProcessInitializeOnLoadMethodAttributes (81ms) ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.71 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.97 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4917. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4903.
Memory consumption went from 209.7 MB to 209.7 MB. Memory consumption went from 178.2 MB to 178.2 MB.
Total: 5.211667 ms (FindLiveObjects: 0.145125 ms CreateObjectMapping: 0.082708 ms MarkObjects: 4.949500 ms DeleteObjects: 0.033542 ms) Total: 5.263792 ms (FindLiveObjects: 0.139167 ms CreateObjectMapping: 0.077708 ms MarkObjects: 5.014875 ms DeleteObjects: 0.031708 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.86 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.16 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4917. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4903.
Memory consumption went from 141.3 MB to 141.3 MB. Memory consumption went from 109.9 MB to 109.9 MB.
Total: 6.693375 ms (FindLiveObjects: 0.186209 ms CreateObjectMapping: 0.083666 ms MarkObjects: 6.397792 ms DeleteObjects: 0.025291 ms) Total: 4.878167 ms (FindLiveObjects: 0.135584 ms CreateObjectMapping: 0.072166 ms MarkObjects: 4.649458 ms DeleteObjects: 0.020167 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
[usbmuxd] Detached: 4 00008101-001A715111B8001E custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
[usbmuxd] Attached: 5 00008101-001A715111B8001E custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc) ...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release Branch: 2022.3/china_unity/release
Build type: Release Build type: Release
Batch mode: YES Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362) macOS version: Version 15.6.1 (Build 24G90)
Darwin version: 25.0.0 Darwin version: 24.6.0
Architecture: arm64 Architecture: arm64
Running under Rosetta: NO Running under Rosetta: NO
Available memory: 24576 MB Available memory: 32768 MB
Using pre-set license Using pre-set license
Pro License: YES Pro License: YES
...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS: ...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS:
-name -name
AssetImportWorker1 AssetImportWorker1
-projectPath -projectPath
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
-logFile -logFile
Logs/AssetImportWorker1.log Logs/AssetImportWorker1.log
-srvPort -srvPort
58762 61801
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo Successfully changed project path to: /Users/gr/Documents/UnityProject/Unity20251010Test
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8" "memorysetup-bucket-allocator-bucket-count=8"
...@@ -56,47 +56,49 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo ...@@ -56,47 +56,49 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] Target information: Player connection [8318886080] Target information:
Player connection [8778041344] * "[IP] 10.1.70.48 [Port] 0 [Flags] 2 [Guid] 355678483 [EditorId] 355678483 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 10.1.3.215 [Port] 0 [Flags] 2 [Guid] 3442382973 [EditorId] 3442382973 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] * "[IP] 169.254.100.34 [Port] 0 [Flags] 2 [Guid] 355678483 [EditorId] 355678483 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 169.254.124.201 [Port] 0 [Flags] 2 [Guid] 3442382973 [EditorId] 3442382973 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] Host joined multi-casting on [225.0.0.222:54997]... Player connection [8318886080] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]... Player connection [8318886080] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized. Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers. [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
Refreshing native plugins compatible for Editor in 14.97 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 13.12 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc) Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc)
[Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path /Users/fengchao/Desktop/UnityDemo/Assets [Subsystems] Discovering subsystems at path /Users/gr/Documents/UnityProject/Unity20251010Test/Assets
GfxDevice: creating device client; threaded=0; jobified=0 GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power) preferred device: Apple M2 Pro (high power)
Metal devices available: 1 Metal devices available: 1
0: Apple M2 (high power) 0: Apple M2 Pro (high power)
Using device Apple M2 (high power) Using device Apple M2 Pro (high power)
Initializing Metal device caps: Apple M2 Initializing Metal device caps: Apple M2 Pro
Initialize mono Initialize mono
Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed' Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed'
Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos' Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos'
Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc' Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56938 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56225
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.002479 seconds. Registered in 0.003127 seconds.
- Loaded All Assemblies, in 0.202 seconds - Loaded All Assemblies, in 0.206 seconds
[usbmuxd] Start listen thread [usbmuxd] Start listen thread
[usbmuxd] Listen thread started [usbmuxd] Listen thread started
[usbmuxd] Send listen message [usbmuxd] Send listen message
[usbmuxd] Attached: 3 00008101-001A715111B8001E
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Android Extension - Scanning For ADB Devices 83 ms
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.172 seconds - Finished resetting the current domain, in 0.278 seconds
Domain Reload Profiling: 375ms Domain Reload Profiling: 484ms
BeginReloadAssembly (69ms) BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
...@@ -105,26 +107,26 @@ Domain Reload Profiling: 375ms ...@@ -105,26 +107,26 @@ Domain Reload Profiling: 375ms
CreateAndSetChildDomain (0ms) CreateAndSetChildDomain (0ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (26ms) initialDomainReloadingComplete (27ms)
LoadAllAssembliesAndSetupDomain (82ms) LoadAllAssembliesAndSetupDomain (84ms)
LoadAssemblies (69ms) LoadAssemblies (70ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (80ms) AnalyzeDomain (82ms)
TypeCache.Refresh (79ms) TypeCache.Refresh (82ms)
TypeCache.ScanAssembly (71ms) TypeCache.ScanAssembly (73ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms) ResolveRequiredComponents (0ms)
FinalizeReload (173ms) FinalizeReload (278ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (147ms) SetupLoadedEditorAssemblies (252ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (49ms) InitializePlatformSupportModulesInManaged (171ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms) BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (71ms) ProcessInitializeOnLoadAttributes (56ms)
ProcessInitializeOnLoadMethodAttributes (22ms) ProcessInitializeOnLoadMethodAttributes (21ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
...@@ -134,106 +136,86 @@ Worker process is ready to serve import requests ...@@ -134,106 +136,86 @@ Worker process is ready to serve import requests
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.402 seconds - Loaded All Assemblies, in 0.407 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.388 seconds - Finished resetting the current domain, in 0.371 seconds
Domain Reload Profiling: 789ms Domain Reload Profiling: 778ms
BeginReloadAssembly (63ms) BeginReloadAssembly (64ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (2ms) DisableScriptedObjects (2ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (9ms) CreateAndSetChildDomain (11ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (18ms) initialDomainReloadingComplete (18ms)
LoadAllAssembliesAndSetupDomain (296ms) LoadAllAssembliesAndSetupDomain (300ms)
LoadAssemblies (215ms) LoadAssemblies (215ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (113ms) AnalyzeDomain (117ms)
TypeCache.Refresh (99ms) TypeCache.Refresh (102ms)
TypeCache.ScanAssembly (88ms) TypeCache.ScanAssembly (88ms)
ScanForSourceGeneratedMonoScriptInfo (10ms) ScanForSourceGeneratedMonoScriptInfo (11ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (388ms) FinalizeReload (372ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (306ms) SetupLoadedEditorAssemblies (283ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (167ms) ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (85ms) ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler
Launched and connected shader compiler UnityShaderCompiler after 0.03 seconds Launched and connected shader compiler UnityShaderCompiler after 0.04 seconds
Refreshing native plugins compatible for Editor in 2.39 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.81 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4413 Unused Serialized files (Serialized files now loaded: 0) Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (50.1 KB). Loaded Objects now: 4883. Unloading 27 unused Assets / (50.0 KB). Loaded Objects now: 4887.
Memory consumption went from 162.2 MB to 162.1 MB. Memory consumption went from 158.9 MB to 158.9 MB.
Total: 5.564584 ms (FindLiveObjects: 0.125000 ms CreateObjectMapping: 0.091334 ms MarkObjects: 5.263000 ms DeleteObjects: 0.084583 ms) Total: 5.356083 ms (FindLiveObjects: 0.112667 ms CreateObjectMapping: 0.072375 ms MarkObjects: 5.094791 ms DeleteObjects: 0.075708 ms)
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== ========================================================================
Received Import Request. Received Import Request.
Time since last request: 71107.800018 seconds. Time since last request: 1845856.750980 seconds.
path: Assets/Plugins path: Assets/Scenes/SampleScene.unity
artifactKey: Guid(9504bf678a0d84e9d96b0dfac46fab15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins using Guid(9504bf678a0d84e9d96b0dfac46fab15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers. Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
-> (artifact id: '41b52433102f2b6ecbb13631a0fd2901') in 0.001077 seconds -> (artifact id: 'ee1ac9b708507614aee1a45abf86c7ef') in 0.001090 seconds
Number of updated asset objects reloaded before import = 0 Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0 Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 4.05 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.27 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 0 Unused Serialized files (Serialized files now loaded: 0) Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4883. Unloading 1 unused Assets / (0.9 KB). Loaded Objects now: 4887.
Memory consumption went from 88.2 MB to 88.2 MB. Memory consumption went from 85.7 MB to 85.7 MB.
Total: 5.619958 ms (FindLiveObjects: 0.157291 ms CreateObjectMapping: 0.072125 ms MarkObjects: 5.376708 ms DeleteObjects: 0.013083 ms) Total: 5.023292 ms (FindLiveObjects: 0.130667 ms CreateObjectMapping: 0.058625 ms MarkObjects: 4.821208 ms DeleteObjects: 0.012417 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 1.74 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4883.
Memory consumption went from 88.3 MB to 88.3 MB.
Total: 5.291041 ms (FindLiveObjects: 0.126875 ms CreateObjectMapping: 0.063834 ms MarkObjects: 5.089542 ms DeleteObjects: 0.010541 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
...@@ -241,10 +223,12 @@ AssetImportParameters requested are different than current active one (requested ...@@ -241,10 +223,12 @@ AssetImportParameters requested are different than current active one (requested
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
...@@ -253,1748 +237,383 @@ AssetImportParameters requested are different than current active one (requested ...@@ -253,1748 +237,383 @@ AssetImportParameters requested are different than current active one (requested
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x1716a7000 may have been prematurely finalized Thread 0x177d83000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.289 seconds - Loaded All Assemblies, in 0.271 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.703 seconds - Finished resetting the current domain, in 0.743 seconds
Domain Reload Profiling: 992ms Domain Reload Profiling: 1014ms
BeginReloadAssembly (71ms) BeginReloadAssembly (77ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (18ms) CreateAndSetChildDomain (25ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms) initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (179ms) LoadAllAssembliesAndSetupDomain (156ms)
LoadAssemblies (142ms) LoadAssemblies (169ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (67ms)
TypeCache.Refresh (52ms)
TypeCache.ScanAssembly (43ms)
ScanForSourceGeneratedMonoScriptInfo (11ms)
ResolveRequiredComponents (3ms)
FinalizeReload (703ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (269ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (140ms)
ProcessInitializeOnLoadMethodAttributes (78ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4887.
Memory consumption went from 163.8 MB to 163.8 MB.
Total: 5.478958 ms (FindLiveObjects: 0.153625 ms CreateObjectMapping: 0.075000 ms MarkObjects: 5.221708 ms DeleteObjects: 0.028000 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 3.72 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4887.
Memory consumption went from 94.4 MB to 94.4 MB.
Total: 15.516958 ms (FindLiveObjects: 0.142916 ms CreateObjectMapping: 0.084042 ms MarkObjects: 15.273916 ms DeleteObjects: 0.015500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1716a7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.272 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.763 seconds
Domain Reload Profiling: 1035ms
BeginReloadAssembly (70ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (17ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (163ms)
LoadAssemblies (179ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (15ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (763ms) FinalizeReload (744ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (275ms) SetupLoadedEditorAssemblies (284ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms) BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms) ProcessInitializeOnLoadAttributes (146ms)
ProcessInitializeOnLoadMethodAttributes (79ms) ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.21 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.08 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.7 KB). Loaded Objects now: 4892. Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4891.
Memory consumption went from 168.9 MB to 168.9 MB. Memory consumption went from 161.2 MB to 161.2 MB.
Total: 5.225250 ms (FindLiveObjects: 0.145917 ms CreateObjectMapping: 0.074875 ms MarkObjects: 4.972041 ms DeleteObjects: 0.032000 ms) Total: 5.241708 ms (FindLiveObjects: 0.151709 ms CreateObjectMapping: 0.080583 ms MarkObjects: 4.981833 ms DeleteObjects: 0.027333 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.49 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4892.
Memory consumption went from 100.2 MB to 100.2 MB.
Total: 5.508958 ms (FindLiveObjects: 0.148208 ms CreateObjectMapping: 0.076917 ms MarkObjects: 5.272708 ms DeleteObjects: 0.010792 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.51 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.0 KB). Loaded Objects now: 4892.
Memory consumption went from 98.7 MB to 98.7 MB.
Total: 5.311500 ms (FindLiveObjects: 0.151375 ms CreateObjectMapping: 0.081250 ms MarkObjects: 5.066042 ms DeleteObjects: 0.012500 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized Thread 0x173d13000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.248 seconds - Loaded All Assemblies, in 0.257 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.756 seconds - Finished resetting the current domain, in 0.722 seconds
Domain Reload Profiling: 1004ms Domain Reload Profiling: 979ms
BeginReloadAssembly (68ms) BeginReloadAssembly (67ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms) CreateAndSetChildDomain (18ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (17ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms) initialDomainReloadingComplete (10ms)
LoadAllAssembliesAndSetupDomain (143ms) LoadAllAssembliesAndSetupDomain (155ms)
LoadAssemblies (158ms) LoadAssemblies (167ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (15ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (756ms) FinalizeReload (722ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (276ms) SetupLoadedEditorAssemblies (282ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (143ms) ProcessInitializeOnLoadAttributes (140ms)
ProcessInitializeOnLoadMethodAttributes (81ms) ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.72 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.95 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4895. Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4895.
Memory consumption went from 172.9 MB to 172.9 MB. Memory consumption went from 168.1 MB to 168.0 MB.
Total: 5.309709 ms (FindLiveObjects: 0.155833 ms CreateObjectMapping: 0.079500 ms MarkObjects: 5.039667 ms DeleteObjects: 0.033750 ms) Total: 5.127875 ms (FindLiveObjects: 0.127167 ms CreateObjectMapping: 0.068625 ms MarkObjects: 4.900667 ms DeleteObjects: 0.030875 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized Thread 0x173d13000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.237 seconds - Loaded All Assemblies, in 0.215 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.461 seconds - Finished resetting the current domain, in 0.742 seconds
Domain Reload Profiling: 697ms Domain Reload Profiling: 957ms
BeginReloadAssembly (65ms) BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (2ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (15ms) CreateAndSetChildDomain (18ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (17ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms) initialDomainReloadingComplete (10ms)
LoadAllAssembliesAndSetupDomain (134ms) LoadAllAssembliesAndSetupDomain (115ms)
LoadAssemblies (147ms) LoadAssemblies (125ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (15ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (461ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (153ms)
ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.52 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4900.
Memory consumption went from 179.9 MB to 179.9 MB.
Total: 5.275000 ms (FindLiveObjects: 0.145042 ms CreateObjectMapping: 0.074250 ms MarkObjects: 5.018834 ms DeleteObjects: 0.036041 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.252 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.743 seconds
Domain Reload Profiling: 995ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (18ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (146ms)
LoadAssemblies (165ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (10ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (4ms)
FinalizeReload (743ms) FinalizeReload (743ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (276ms) SetupLoadedEditorAssemblies (265ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms) InitializePlatformSupportModulesInManaged (16ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms) BeforeProcessingInitializeOnLoad (32ms)
ProcessInitializeOnLoadAttributes (144ms) ProcessInitializeOnLoadAttributes (134ms)
ProcessInitializeOnLoadMethodAttributes (82ms) ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.01 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.95 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4904. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4899.
Memory consumption went from 186.6 MB to 186.5 MB. Memory consumption went from 175.0 MB to 175.0 MB.
Total: 5.558875 ms (FindLiveObjects: 0.156166 ms CreateObjectMapping: 0.082500 ms MarkObjects: 5.286667 ms DeleteObjects: 0.033042 ms) Total: 4.658000 ms (FindLiveObjects: 0.139500 ms CreateObjectMapping: 0.077667 ms MarkObjects: 4.403708 ms DeleteObjects: 0.036833 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.27 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.301 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.744 seconds
Domain Reload Profiling: 1046ms
BeginReloadAssembly (80ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (182ms)
LoadAssemblies (198ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms)
TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (744ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (279ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (146ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.31 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4909. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4899.
Memory consumption went from 192.9 MB to 192.9 MB. Memory consumption went from 102.4 MB to 102.4 MB.
Total: 5.546292 ms (FindLiveObjects: 0.146334 ms CreateObjectMapping: 0.084500 ms MarkObjects: 5.280500 ms DeleteObjects: 0.034375 ms) Total: 10.659750 ms (FindLiveObjects: 0.200583 ms CreateObjectMapping: 0.077583 ms MarkObjects: 10.329042 ms DeleteObjects: 0.052208 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized Thread 0x173d13000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.244 seconds - Loaded All Assemblies, in 0.285 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.466 seconds - Finished resetting the current domain, in 0.754 seconds
Domain Reload Profiling: 710ms Domain Reload Profiling: 1039ms
BeginReloadAssembly (66ms) BeginReloadAssembly (83ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (15ms) CreateAndSetChildDomain (26ms)
RebuildCommonClasses (18ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (140ms) LoadAllAssembliesAndSetupDomain (163ms)
LoadAssemblies (152ms) LoadAssemblies (173ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms) AnalyzeDomain (21ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (11ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (5ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (5ms)
FinalizeReload (466ms) FinalizeReload (755ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (286ms) SetupLoadedEditorAssemblies (277ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms) BeforeProcessingInitializeOnLoad (32ms)
ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadAttributes (139ms)
ProcessInitializeOnLoadMethodAttributes (85ms) ProcessInitializeOnLoadMethodAttributes (86ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.39 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4912. Unloading 21 unused Assets / (31.1 KB). Loaded Objects now: 4903.
Memory consumption went from 199.8 MB to 199.8 MB. Memory consumption went from 176.9 MB to 176.9 MB.
Total: 5.450000 ms (FindLiveObjects: 0.155417 ms CreateObjectMapping: 0.078791 ms MarkObjects: 5.183959 ms DeleteObjects: 0.031417 ms) Total: 5.330541 ms (FindLiveObjects: 0.149292 ms CreateObjectMapping: 0.080000 ms MarkObjects: 5.062792 ms DeleteObjects: 0.037750 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.52 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.32 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4912. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4903.
Memory consumption went from 131.5 MB to 131.5 MB. Memory consumption went from 106.9 MB to 106.9 MB.
Total: 5.520625 ms (FindLiveObjects: 0.143083 ms CreateObjectMapping: 0.084542 ms MarkObjects: 5.276958 ms DeleteObjects: 0.015792 ms) Total: 11.780958 ms (FindLiveObjects: 0.177000 ms CreateObjectMapping: 0.064833 ms MarkObjects: 11.494458 ms DeleteObjects: 0.044417 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.51 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4912.
Memory consumption went from 129.8 MB to 129.8 MB.
Total: 6.386083 ms (FindLiveObjects: 0.159334 ms CreateObjectMapping: 0.072833 ms MarkObjects: 6.133833 ms DeleteObjects: 0.019917 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.64 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4912.
Memory consumption went from 128.7 MB to 128.7 MB.
Total: 6.731250 ms (FindLiveObjects: 0.176750 ms CreateObjectMapping: 0.086167 ms MarkObjects: 6.445125 ms DeleteObjects: 0.022875 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
[usbmuxd] Detached: 3 00008101-001A715111B8001E
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.309 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.799 seconds
Domain Reload Profiling: 1108ms
BeginReloadAssembly (84ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (25ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (185ms)
LoadAssemblies (200ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (799ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (286ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (147ms)
ProcessInitializeOnLoadMethodAttributes (85ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (3ms)
Refreshing native plugins compatible for Editor in 3.97 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4915.
Memory consumption went from 201.5 MB to 201.5 MB.
Total: 5.729292 ms (FindLiveObjects: 0.160084 ms CreateObjectMapping: 0.091166 ms MarkObjects: 5.427375 ms DeleteObjects: 0.050167 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.228 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.456 seconds
Domain Reload Profiling: 684ms
BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (125ms)
LoadAssemblies (138ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (456ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (282ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (80ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.15 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4920.
Memory consumption went from 208.5 MB to 208.4 MB.
Total: 5.631000 ms (FindLiveObjects: 0.159750 ms CreateObjectMapping: 0.081750 ms MarkObjects: 5.357333 ms DeleteObjects: 0.031792 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.224 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.744 seconds
Domain Reload Profiling: 968ms
BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (121ms)
LoadAssemblies (135ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (744ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (291ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.16 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4925.
Memory consumption went from 215.5 MB to 215.4 MB.
Total: 5.634167 ms (FindLiveObjects: 0.158709 ms CreateObjectMapping: 0.080000 ms MarkObjects: 5.365542 ms DeleteObjects: 0.029500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.222 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.465 seconds
Domain Reload Profiling: 687ms
BeginReloadAssembly (65ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (120ms)
LoadAssemblies (133ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (465ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.34 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.0 KB). Loaded Objects now: 4928.
Memory consumption went from 222.4 MB to 222.4 MB.
Total: 5.605000 ms (FindLiveObjects: 0.164042 ms CreateObjectMapping: 0.077833 ms MarkObjects: 5.329125 ms DeleteObjects: 0.033625 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.246 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.719 seconds
Domain Reload Profiling: 966ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (18ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (141ms)
LoadAssemblies (159ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (10ms)
TypeCache.Refresh (5ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (4ms)
FinalizeReload (719ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (276ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.29 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4932.
Memory consumption went from 229.4 MB to 229.4 MB.
Total: 5.248167 ms (FindLiveObjects: 0.149458 ms CreateObjectMapping: 0.107625 ms MarkObjects: 4.962750 ms DeleteObjects: 0.028042 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.228 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.466 seconds
Domain Reload Profiling: 693ms
BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (125ms)
LoadAssemblies (138ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (466ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (289ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (152ms)
ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.14 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.14 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.1 KB). Loaded Objects now: 4935.
Memory consumption went from 236.4 MB to 236.3 MB.
Total: 5.518333 ms (FindLiveObjects: 0.153334 ms CreateObjectMapping: 0.082792 ms MarkObjects: 5.246208 ms DeleteObjects: 0.035500 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.229 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.731 seconds
Domain Reload Profiling: 959ms
BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (122ms)
LoadAssemblies (138ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (731ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (142ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.13 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4941.
Memory consumption went from 243.4 MB to 243.4 MB.
Total: 5.514041 ms (FindLiveObjects: 0.159959 ms CreateObjectMapping: 0.077750 ms MarkObjects: 5.243333 ms DeleteObjects: 0.032292 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.46 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.0 KB). Loaded Objects now: 4941.
Memory consumption went from 175.2 MB to 175.2 MB.
Total: 5.579375 ms (FindLiveObjects: 0.145375 ms CreateObjectMapping: 0.081209 ms MarkObjects: 5.333375 ms DeleteObjects: 0.019000 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.264 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.743 seconds
Domain Reload Profiling: 1007ms
BeginReloadAssembly (74ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (151ms)
LoadAssemblies (169ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (744ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (286ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.54 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4945.
Memory consumption went from 250.2 MB to 250.2 MB.
Total: 5.620417 ms (FindLiveObjects: 0.165833 ms CreateObjectMapping: 0.095583 ms MarkObjects: 5.319500 ms DeleteObjects: 0.038917 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
[usbmuxd] Attached: 4 00008101-001A715111B8001E
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.303 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.805 seconds
Domain Reload Profiling: 1109ms
BeginReloadAssembly (82ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (182ms)
LoadAssemblies (198ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms)
FinalizeReload (805ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (280ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (3ms)
Refreshing native plugins compatible for Editor in 2.50 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4395 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4949.
Memory consumption went from 252.1 MB to 252.1 MB.
Total: 6.371459 ms (FindLiveObjects: 0.151125 ms CreateObjectMapping: 0.100375 ms MarkObjects: 6.055125 ms DeleteObjects: 0.063667 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.90 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4949.
Memory consumption went from 183.7 MB to 183.7 MB.
Total: 5.517542 ms (FindLiveObjects: 0.189917 ms CreateObjectMapping: 0.098625 ms MarkObjects: 5.207042 ms DeleteObjects: 0.021208 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-firstpass: bae848875a35fe96f09fcc9f4e534600 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x171503000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.339 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.768 seconds
Domain Reload Profiling: 1107ms
BeginReloadAssembly (108ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (27ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (21ms)
LoadAllAssembliesAndSetupDomain (185ms)
LoadAssemblies (220ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (18ms)
TypeCache.Refresh (10ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms)
FinalizeReload (768ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (283ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (150ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.18 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 19 unused Assets / (30.2 KB). Loaded Objects now: 4952.
Memory consumption went from 256.3 MB to 256.3 MB.
Total: 5.639500 ms (FindLiveObjects: 0.160625 ms CreateObjectMapping: 0.086084 ms MarkObjects: 5.354792 ms DeleteObjects: 0.037291 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 ->
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 ->
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 ->
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 ->
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
========================================================================
Received Prepare
Refreshing native plugins compatible for Editor in 2.79 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4952. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4903.
Memory consumption went from 188.0 MB to 188.0 MB. Memory consumption went from 106.3 MB to 106.3 MB.
Total: 5.806541 ms (FindLiveObjects: 0.158750 ms CreateObjectMapping: 0.092042 ms MarkObjects: 5.542916 ms DeleteObjects: 0.012458 ms) Total: 5.137417 ms (FindLiveObjects: 0.118291 ms CreateObjectMapping: 0.056917 ms MarkObjects: 4.948291 ms DeleteObjects: 0.013500 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 3.01 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.12 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4952. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4903.
Memory consumption went from 184.2 MB to 184.2 MB. Memory consumption went from 105.9 MB to 105.9 MB.
Total: 10.296500 ms (FindLiveObjects: 0.346625 ms CreateObjectMapping: 0.090750 ms MarkObjects: 9.799834 ms DeleteObjects: 0.058625 ms) Total: 4.914250 ms (FindLiveObjects: 0.116125 ms CreateObjectMapping: 0.057417 ms MarkObjects: 4.730208 ms DeleteObjects: 0.010208 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/precompiled-assembly-types:UnityEditor.Purchasing: 685dd6c21885a5f478106a28c35eac48 -> 34a9de9d7f3d57ae0879e0d7f40e5358
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/IosLoadListener.cs: 60a6fa6bfa5567471df83e1cd9489185 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp-Editor-firstpass: 3fd6b50ec683164c50739fbf479dcd19 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/PostProcessBuildPlist.cs: 09abaaf263b8719afa9fe152a55cce58 -> custom:scripting/monoscript/fileName/AndroidSdkInterface.cs: 6e3db57061ca34c38e779b592f96227a -> e29d39141a5bfadf759736e5878b85e0
custom:scripting/monoscript/fileName/IosShowListener.cs: 99a543284038b23ffae9effef8635bb2 ->
custom:scripting/precompiled-assembly-types:Unity.Services.Core.Device: 05e86348667145c6318337b7ef48c140 -> 63b48da9c583ff24a0dde69e3097501c
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements: 943cb582db753c05f125cc05f1779411 -> eddddc804f85d325d3f2cfb2febf94fd
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/NSUserDefaults.cs: 0e4508bfb9a56172d0357721cef59693 -> custom:scripting/monoscript/fileName/UnityMainThreadDispatcher.cs: 59131a198017688fc8eb39933d306c21 -> 0bce36b8c25f42178c83738c5dd73307
custom:scripting/monoscript/fileName/IosPlatform.cs: 02c9366fe4abc914cb4db792079af415 -> custom:scripting/monoscript/fileName/LogViewer.cs: 22625e9580e682902c2b3099a69bb268 -> 673788c40403bed17d27dcd360c00851
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/IosInitializationListener.cs: 1afcd9eace4b29d4c56ac3e208ce6091 -> custom:scripting/monoscript/fileName/BtnManager.cs: be7766b8a45d2db66ecef7123ff3d68f -> 9933fbcc6190e2a9171c2ec8808a053e
custom:scripting/monoscript/fileName/AppleCapabilities.cs: ada0ffee336d5f4f056e5a6f89636ddf ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/IosBanner.cs: 0b0154bb8d2fedf5a9d3337f009a27b7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IosNativeObject.cs: bf575b4cc098f2a6c690a7fffa6175b2 -> custom:scripting/precompiled-assembly-types:NewAssembly: 3bbbfbc6cabd98bb8c640f545165a977 -> 2b705c8592a911138de73383f880dcdf
custom:scripting/precompiled-assembly-types:UnityEngine.Advertisements.Editor: a357c05e7c81b4c56f1b27612cc9a459 -> f05c6ef344003dc4beb91632ad6a3d4b
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/IOSPostBuildProcessor.cs: 76ac7804fc0f6c6054b492c6424447f1 ->
...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc) ...@@ -2,11 +2,11 @@ Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release Branch: 2022.3/china_unity/release
Build type: Release Build type: Release
Batch mode: YES Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362) macOS version: Version 15.6.1 (Build 24G90)
Darwin version: 25.0.0 Darwin version: 24.6.0
Architecture: arm64 Architecture: arm64
Running under Rosetta: NO Running under Rosetta: NO
Available memory: 24576 MB Available memory: 32768 MB
Using pre-set license Using pre-set license
Pro License: YES Pro License: YES
...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS: ...@@ -18,13 +18,13 @@ COMMAND LINE ARGUMENTS:
-name -name
AssetImportWorker1 AssetImportWorker1
-projectPath -projectPath
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
-logFile -logFile
Logs/AssetImportWorker1.log Logs/AssetImportWorker1.log
-srvPort -srvPort
60069 50701
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo Successfully changed project path to: /Users/gr/Documents/UnityProject/Unity20251010Test
/Users/fengchao/Desktop/UnityDemo /Users/gr/Documents/UnityProject/Unity20251010Test
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8" "memorysetup-bucket-allocator-bucket-count=8"
...@@ -56,75 +56,77 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo ...@@ -56,75 +56,77 @@ Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] Target information: Player connection [8318886080] Target information:
Player connection [8778041344] * "[IP] 10.1.70.48 [Port] 0 [Flags] 2 [Guid] 52025298 [EditorId] 52025298 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 10.1.3.215 [Port] 0 [Flags] 2 [Guid] 2922237051 [EditorId] 2922237051 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] * "[IP] 169.254.82.111 [Port] 0 [Flags] 2 [Guid] 52025298 [EditorId] 52025298 [Version] 1048832 [Id] OSXEditor(0,Mac.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor" Player connection [8318886080] * "[IP] 169.254.124.201 [Port] 0 [Flags] 2 [Guid] 2922237051 [EditorId] 2922237051 [Version] 1048832 [Id] OSXEditor(0,GRdeMac-mini.local) [Debug] 1 [PackageName] OSXEditor [ProjectName] Editor"
Player connection [8778041344] Host joined multi-casting on [225.0.0.222:54997]... Player connection [8318886080] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]... Player connection [8318886080] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized. Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers. [PhysX] Initialized MultithreadedTaskDispatcher with 10 workers.
Refreshing native plugins compatible for Editor in 14.38 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 13.79 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc) Initialize engine version: 2022.3.62f2c1 (92e6e6be66dc)
[Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Resources/UnitySubsystems
[Subsystems] Discovering subsystems at path /Users/fengchao/Desktop/UnityDemo/Assets [Subsystems] Discovering subsystems at path /Users/gr/Documents/UnityProject/Unity20251010Test/Assets
GfxDevice: creating device client; threaded=0; jobified=0 GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power) preferred device: Apple M2 Pro (high power)
Metal devices available: 1 Metal devices available: 1
0: Apple M2 (high power) 0: Apple M2 Pro (high power)
Using device Apple M2 (high power) Using device Apple M2 Pro (high power)
Initializing Metal device caps: Apple M2 Initializing Metal device caps: Apple M2 Pro
Initialize mono Initialize mono
Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed' Mono path[0] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Managed'
Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos' Mono path[1] = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos'
Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc' Mono config path = '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56390 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56065
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll
Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll Register platform support module: /Applications/Unity/Hub/Editor/2022.3.62f2c1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.001471 seconds. Registered in 0.004048 seconds.
- Loaded All Assemblies, in 0.258 seconds - Loaded All Assemblies, in 0.208 seconds
[usbmuxd] Start listen thread [usbmuxd] Start listen thread
[usbmuxd] Listen thread started [usbmuxd] Listen thread started
[usbmuxd] Send listen message [usbmuxd] Send listen message
[usbmuxd] Attached: 4 00008101-001A715111B8001E
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Android Extension - Scanning For ADB Devices 69 ms
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.204 seconds - Finished resetting the current domain, in 0.262 seconds
Domain Reload Profiling: 462ms Domain Reload Profiling: 470ms
BeginReloadAssembly (93ms) BeginReloadAssembly (70ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (0ms) CreateAndSetChildDomain (0ms)
RebuildCommonClasses (22ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (28ms) initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (107ms) LoadAllAssembliesAndSetupDomain (84ms)
LoadAssemblies (93ms) LoadAssemblies (71ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (105ms) AnalyzeDomain (82ms)
TypeCache.Refresh (103ms) TypeCache.Refresh (81ms)
TypeCache.ScanAssembly (89ms) TypeCache.ScanAssembly (73ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (1ms) ResolveRequiredComponents (0ms)
FinalizeReload (204ms) FinalizeReload (262ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (175ms) SetupLoadedEditorAssemblies (235ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (71ms) InitializePlatformSupportModulesInManaged (153ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms) BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (76ms) ProcessInitializeOnLoadAttributes (56ms)
ProcessInitializeOnLoadMethodAttributes (23ms) ProcessInitializeOnLoadMethodAttributes (21ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
...@@ -134,52 +136,53 @@ Worker process is ready to serve import requests ...@@ -134,52 +136,53 @@ Worker process is ready to serve import requests
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.408 seconds - Loaded All Assemblies, in 0.419 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.384 seconds - Finished resetting the current domain, in 0.380 seconds
Domain Reload Profiling: 793ms Domain Reload Profiling: 798ms
BeginReloadAssembly (66ms) BeginReloadAssembly (67ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (10ms) CreateAndSetChildDomain (12ms)
RebuildCommonClasses (20ms) RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (20ms) initialDomainReloadingComplete (20ms)
LoadAllAssembliesAndSetupDomain (295ms) LoadAllAssembliesAndSetupDomain (306ms)
LoadAssemblies (209ms) LoadAssemblies (218ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (118ms) AnalyzeDomain (121ms)
TypeCache.Refresh (104ms) TypeCache.Refresh (106ms)
TypeCache.ScanAssembly (91ms) TypeCache.ScanAssembly (92ms)
ScanForSourceGeneratedMonoScriptInfo (10ms) ScanForSourceGeneratedMonoScriptInfo (12ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (384ms) FinalizeReload (380ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (305ms) SetupLoadedEditorAssemblies (296ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (2ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms) BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (168ms) ProcessInitializeOnLoadAttributes (158ms)
ProcessInitializeOnLoadMethodAttributes (87ms) ProcessInitializeOnLoadMethodAttributes (86ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler Launching external process: /Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/Tools/UnityShaderCompiler
Launched and connected shader compiler UnityShaderCompiler after 0.18 seconds Launched and connected shader compiler UnityShaderCompiler after 0.03 seconds
Refreshing native plugins compatible for Editor in 2.50 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.12 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4414 Unused Serialized files (Serialized files now loaded: 0) Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (49.7 KB). Loaded Objects now: 4885. Unloading 27 unused Assets / (49.8 KB). Loaded Objects now: 4887.
Memory consumption went from 162.3 MB to 162.2 MB. Memory consumption went from 158.5 MB to 158.4 MB.
Total: 6.225208 ms (FindLiveObjects: 0.154500 ms CreateObjectMapping: 0.072500 ms MarkObjects: 5.777584 ms DeleteObjects: 0.220041 ms) Total: 5.343625 ms (FindLiveObjects: 0.143375 ms CreateObjectMapping: 0.073333 ms MarkObjects: 5.054000 ms DeleteObjects: 0.072750 ms)
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
...@@ -198,622 +201,849 @@ AssetImportParameters requested are different than current active one (requested ...@@ -198,622 +201,849 @@ AssetImportParameters requested are different than current active one (requested
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized Thread 0x3089eb000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.254 seconds - Loaded All Assemblies, in 0.301 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.464 seconds - Finished resetting the current domain, in 0.758 seconds
Domain Reload Profiling: 718ms Domain Reload Profiling: 1058ms
BeginReloadAssembly (95ms) BeginReloadAssembly (72ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (41ms) CreateAndSetChildDomain (21ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (16ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (6ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (10ms)
LoadAllAssembliesAndSetupDomain (121ms) LoadAllAssembliesAndSetupDomain (195ms)
LoadAssemblies (137ms) LoadAssemblies (194ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms) AnalyzeDomain (28ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (14ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (8ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (5ms)
FinalizeReload (464ms) FinalizeReload (758ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (283ms) SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadAttributes (147ms)
ProcessInitializeOnLoadMethodAttributes (82ms) ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.21 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.93 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4889. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4891.
Memory consumption went from 164.7 MB to 164.7 MB. Memory consumption went from 160.5 MB to 160.5 MB.
Total: 5.314459 ms (FindLiveObjects: 0.141583 ms CreateObjectMapping: 0.089708 ms MarkObjects: 5.050417 ms DeleteObjects: 0.031709 ms) Total: 5.286958 ms (FindLiveObjects: 0.137458 ms CreateObjectMapping: 0.077083 ms MarkObjects: 5.041667 ms DeleteObjects: 0.030125 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
Received Import Request. custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
Time since last request: 105499.653741 seconds. custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
path: Assets/Plugins/Editor/IOSPostBuildProcessor.cs
artifactKey: Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Plugins/Editor/IOSPostBuildProcessor.cs using Guid(ba2977f3852c448f0917f461a52c5146) Importer(815301076,1909f56bfc062723c751e8b465ee728b) [PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
-> (artifact id: 'cf855e8af8564c1daf4e293dec8675e2') in 0.001028 seconds
Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 5.69 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.268 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.758 seconds
Domain Reload Profiling: 1026ms
BeginReloadAssembly (77ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (154ms)
LoadAssemblies (170ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (758ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (275ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (78ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.71 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4893. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4891.
Memory consumption went from 171.3 MB to 171.3 MB. Memory consumption went from 92.1 MB to 92.1 MB.
Total: 5.381500 ms (FindLiveObjects: 0.165709 ms CreateObjectMapping: 0.082500 ms MarkObjects: 5.103250 ms DeleteObjects: 0.029500 ms) Total: 5.526291 ms (FindLiveObjects: 0.132583 ms CreateObjectMapping: 0.065583 ms MarkObjects: 5.317375 ms DeleteObjects: 0.010333 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized Thread 0x17fbc7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.234 seconds - Loaded All Assemblies, in 0.293 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.464 seconds - Finished resetting the current domain, in 0.748 seconds
Domain Reload Profiling: 698ms Domain Reload Profiling: 1040ms
BeginReloadAssembly (75ms) BeginReloadAssembly (70ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (24ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (19ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms) initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (121ms) LoadAllAssembliesAndSetupDomain (185ms)
LoadAssemblies (136ms) LoadAssemblies (197ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms) AnalyzeDomain (17ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (1ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (465ms) FinalizeReload (748ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms) SetupLoadedEditorAssemblies (287ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (17ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (151ms) ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (83ms) ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.25 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.01 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4897. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4895.
Memory consumption went from 178.5 MB to 178.4 MB. Memory consumption went from 166.3 MB to 166.3 MB.
Total: 5.645500 ms (FindLiveObjects: 0.155250 ms CreateObjectMapping: 0.083834 ms MarkObjects: 5.376458 ms DeleteObjects: 0.029417 ms) Total: 5.163417 ms (FindLiveObjects: 0.141458 ms CreateObjectMapping: 0.071500 ms MarkObjects: 4.913542 ms DeleteObjects: 0.036459 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.80 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 5.77 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4897. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 110.0 MB to 110.0 MB. Memory consumption went from 97.9 MB to 97.9 MB.
Total: 6.672458 ms (FindLiveObjects: 0.155584 ms CreateObjectMapping: 0.082916 ms MarkObjects: 6.422042 ms DeleteObjects: 0.011791 ms) Total: 5.339041 ms (FindLiveObjects: 0.125792 ms CreateObjectMapping: 0.065750 ms MarkObjects: 5.133291 ms DeleteObjects: 0.013792 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.304 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.757 seconds
Domain Reload Profiling: 1061ms
BeginReloadAssembly (107ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (47ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (13ms)
LoadAllAssembliesAndSetupDomain (158ms)
LoadAssemblies (178ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (757ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (79ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.23 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4901.
Memory consumption went from 184.8 MB to 184.7 MB.
Total: 5.647375 ms (FindLiveObjects: 0.172459 ms CreateObjectMapping: 0.081584 ms MarkObjects: 5.350291 ms DeleteObjects: 0.042500 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.17 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.251 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.728 seconds
Domain Reload Profiling: 979ms
BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (17ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (145ms)
LoadAssemblies (160ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (729ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (274ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (78ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.67 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 191.6 MB to 191.6 MB. Memory consumption went from 97.1 MB to 97.1 MB.
Total: 5.545292 ms (FindLiveObjects: 0.161625 ms CreateObjectMapping: 0.088583 ms MarkObjects: 5.256084 ms DeleteObjects: 0.038334 ms) Total: 5.633583 ms (FindLiveObjects: 0.143459 ms CreateObjectMapping: 0.076916 ms MarkObjects: 5.395167 ms DeleteObjects: 0.017667 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.81 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.08 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 123.2 MB to 123.2 MB. Memory consumption went from 96.4 MB to 96.4 MB.
Total: 5.625584 ms (FindLiveObjects: 0.143334 ms CreateObjectMapping: 0.078791 ms MarkObjects: 5.393084 ms DeleteObjects: 0.009917 ms) Total: 5.086958 ms (FindLiveObjects: 0.115042 ms CreateObjectMapping: 0.055375 ms MarkObjects: 4.905084 ms DeleteObjects: 0.011166 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 3.07 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.11 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4905. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4895.
Memory consumption went from 122.1 MB to 122.1 MB. Memory consumption went from 96.0 MB to 96.0 MB.
Total: 19.695791 ms (FindLiveObjects: 0.245292 ms CreateObjectMapping: 0.105667 ms MarkObjects: 19.294666 ms DeleteObjects: 0.049750 ms) Total: 6.291667 ms (FindLiveObjects: 0.154209 ms CreateObjectMapping: 0.075500 ms MarkObjects: 6.043084 ms DeleteObjects: 0.018583 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized Thread 0x17fbc7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.338 seconds - Loaded All Assemblies, in 0.286 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.848 seconds - Finished resetting the current domain, in 0.763 seconds
Domain Reload Profiling: 1186ms Domain Reload Profiling: 1049ms
BeginReloadAssembly (91ms) BeginReloadAssembly (78ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (28ms) CreateAndSetChildDomain (24ms)
RebuildCommonClasses (20ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (9ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (22ms) initialDomainReloadingComplete (15ms)
LoadAllAssembliesAndSetupDomain (195ms) LoadAllAssembliesAndSetupDomain (167ms)
LoadAssemblies (214ms) LoadAssemblies (181ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms) AnalyzeDomain (17ms)
TypeCache.Refresh (8ms) TypeCache.Refresh (9ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms) ResolveRequiredComponents (4ms)
FinalizeReload (849ms) FinalizeReload (763ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (363ms) SetupLoadedEditorAssemblies (289ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (204ms) ProcessInitializeOnLoadAttributes (149ms)
ProcessInitializeOnLoadMethodAttributes (104ms) ProcessInitializeOnLoadMethodAttributes (84ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.74 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.23 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4909. Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4899.
Memory consumption went from 196.4 MB to 196.4 MB. Memory consumption went from 171.4 MB to 171.3 MB.
Total: 5.762000 ms (FindLiveObjects: 0.147583 ms CreateObjectMapping: 0.072750 ms MarkObjects: 5.499000 ms DeleteObjects: 0.042083 ms) Total: 5.305042 ms (FindLiveObjects: 0.124041 ms CreateObjectMapping: 0.069334 ms MarkObjects: 5.069958 ms DeleteObjects: 0.041125 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Refreshing native plugins compatible for Editor in 2.15 ms, found 2 plugins.
Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.226 seconds
Native extension for iOS target not found
Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.475 seconds
Domain Reload Profiling: 700ms
BeginReloadAssembly (68ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (16ms)
RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (120ms)
LoadAssemblies (136ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (475ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (288ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (152ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.18 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4913. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4899.
Memory consumption went from 203.2 MB to 203.1 MB. Memory consumption went from 103.0 MB to 103.0 MB.
Total: 5.458875 ms (FindLiveObjects: 0.161375 ms CreateObjectMapping: 0.081292 ms MarkObjects: 5.184625 ms DeleteObjects: 0.031000 ms) Total: 4.706708 ms (FindLiveObjects: 0.107334 ms CreateObjectMapping: 0.057250 ms MarkObjects: 4.528084 ms DeleteObjects: 0.013500 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Caller must complete domain reload Caller must complete domain reload
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Thread 0x1710ff000 may have been prematurely finalized Thread 0x17fbc7000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.339 seconds - Loaded All Assemblies, in 0.251 seconds
Native extension for iOS target not found Native extension for iOS target not found
Native extension for Android target not found
Native extension for OSXStandalone target not found Native extension for OSXStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.770 seconds - Finished resetting the current domain, in 0.787 seconds
Domain Reload Profiling: 1108ms Domain Reload Profiling: 1038ms
BeginReloadAssembly (71ms) BeginReloadAssembly (69ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms) DisableScriptedObjects (3ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (29ms) RebuildCommonClasses (18ms)
RebuildNativeTypeToScriptingClass (26ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (36ms) initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (175ms) LoadAllAssembliesAndSetupDomain (145ms)
LoadAssemblies (190ms) LoadAssemblies (158ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms) AnalyzeDomain (14ms)
TypeCache.Refresh (7ms) TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms) TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms) ScanForSourceGeneratedMonoScriptInfo (3ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (770ms) FinalizeReload (788ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (278ms) SetupLoadedEditorAssemblies (290ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms) InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (143ms) ProcessInitializeOnLoadAttributes (147ms)
ProcessInitializeOnLoadMethodAttributes (81ms) ProcessInitializeOnLoadMethodAttributes (85ms)
AfterProcessingInitializeOnLoad (1ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms) AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.71 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 1.98 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0) Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4917. Unloading 18 unused Assets / (29.5 KB). Loaded Objects now: 4903.
Memory consumption went from 209.6 MB to 209.6 MB. Memory consumption went from 178.0 MB to 178.0 MB.
Total: 5.168334 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.093750 ms MarkObjects: 4.898375 ms DeleteObjects: 0.030917 ms) Total: 5.282542 ms (FindLiveObjects: 0.115042 ms CreateObjectMapping: 0.071791 ms MarkObjects: 5.065834 ms DeleteObjects: 0.029458 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
======================================================================== ========================================================================
Received Prepare Received Prepare
Refreshing native plugins compatible for Editor in 2.87 ms, found 2 plugins. Refreshing native plugins compatible for Editor in 2.16 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 1 Unused Serialized files (Serialized files now loaded: 0) Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4917. Unloading 1 unused Assets / (3.1 KB). Loaded Objects now: 4903.
Memory consumption went from 141.2 MB to 141.2 MB. Memory consumption went from 109.7 MB to 109.7 MB.
Total: 6.797542 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.083166 ms MarkObjects: 6.512708 ms DeleteObjects: 0.022333 ms) Total: 5.176958 ms (FindLiveObjects: 0.136125 ms CreateObjectMapping: 0.072083 ms MarkObjects: 4.958000 ms DeleteObjects: 0.010416 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:scripting/monoscript/fileName/SkewTextExample.cs: c142d02d70a129e0533975f7c2f96956 ->
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:scripting/monoscript/fileName/TMP_TextEventHandler.cs: f5cd9d5a43bfefc8f4fec80e6de896a4 ->
custom:scripting/monoscript/fileName/TextMeshProFloatingText.cs: 92608fa4a6315cd0786d82205e77b697 ->
custom:scripting/monoscript/fileName/VertexZoom.cs: 650ab1e81d40126e3edcf737cce646e4 ->
custom:scripting/monoscript/fileName/VertexShakeA.cs: 63ec564c588058369499638dd899e05b ->
custom:scripting/monoscript/fileName/TMP_ExampleScript_01.cs: a9d4be556104ff54e7d240529b3e01dc ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:scripting/monoscript/fileName/TMP_TextEventCheck.cs: 13505d917eab5868c435e0c2986dadfa ->
custom:scripting/monoscript/fileName/TMP_TextSelector_B.cs: ba2be21a7486d37b1011342977a2e49d ->
custom:scripting/monoscript/fileName/Benchmark01.cs: 2d3e2cd961730ab95f139a49a673bace ->
custom:scripting/monoscript/fileName/Benchmark02.cs: 5640963252ce70910e726415f869ced6 ->
custom:scripting/monoscript/fileName/DropdownSample.cs: 0a92251794e5f10400149f96c3c59e5d ->
custom:scripting/monoscript/fileName/WarpTextExample.cs: 2663459c266363641981c7d17b698d7f ->
custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:scripting/monoscript/fileName/ChatController.cs: 876d5ccae6e345dd5d9450eb0a748f16 ->
custom:scripting/monoscript/fileName/TextMeshSpawner.cs: 76f28e2ddb031571e6ec62b018f65fa8 ->
custom:scripting/monoscript/fileName/TeleType.cs: 31fa97821c4c70f157ec81d507aa6b62 ->
custom:scripting/monoscript/fileName/LogViewer.cs: 673788c40403bed17d27dcd360c00851 ->
custom:scripting/monoscript/fileName/Benchmark04.cs: 32220b148620e52aa81c13a114862bf4 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:scripting/monoscript/fileName/TMP_PhoneNumberValidator.cs: 7c3049f481e464c6a9a15dee56c3126f ->
custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 ->
custom:scripting/monoscript/fileName/PlatformCallback.cs: 5dd9a2c9f37c761670caa3e9951fa0e7 -> 0dc6e01a5dbf0e12120b5bc79929813c
custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 -> custom:AudioImporter_EditorPlatform: 3918e3fc78b5a79bad01e8451be0beb8 ->
custom:scripting/monoscript/fileName/EnvMapAnimator.cs: 1b4f61c17e4b7283c3ac351aacff9d26 ->
custom:scripting/monoscript/fileName/ShaderPropAnimator.cs: 55ce425812446482e623ff2695c94cb2 ->
custom:scripting/monoscript/fileName/SimpleScript.cs: 454caab0c6c050f29b39d82e1d66d0fa ->
custom:scripting/monoscript/fileName/ObjectSpin.cs: 2b96bb2079dd7fa5108d981627a28e1e ->
custom:scripting/monoscript/fileName/CameraController.cs: 34b6be4e23ce86dc89786916c5983296 ->
custom:scripting/monoscript/fileName/TMP_TextInfoDebugTool.cs: 3f1709cfb2cc628169113a35b5e9be3f ->
custom:scripting/monoscript/fileName/BtnManager.cs: 9933fbcc6190e2a9171c2ec8808a053e ->
custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 -> custom:framework-osx-AVFoundation: e770b220cccbd017edd2c1fefb359320 ->
custom:scripting/monoscript/fileName/TMP_TextSelector_A.cs: 347309a09d56e367b188a6978f75b424 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:scripting/monoscript/fileName/VertexJitter.cs: d27eb5498e48714a66aece98da065133 ->
custom:scripting/precompiled-assembly-types:NewAssembly: c83b65b724aa2b6b4b7efc3a8f33b93e -> 3bbbfbc6cabd98bb8c640f545165a977
custom:scripting/monoscript/fileName/TextConsoleSimulator.cs: 33fc311abb20b5b0ed8f00e4d86b574e ->
custom:scripting/monoscript/fileName/VertexColorCycler.cs: 5f984ca91cf3609293aecc6bc5641572 ->
custom:scripting/monoscript/fileName/TMP_FrameRateCounter.cs: 46f655df8cb483ac5958307137b1585a ->
custom:scripting/monoscript/fileName/VertexShakeB.cs: a6f78c4fcda1a29a1a1c1baefedba9e7 ->
custom:scripting/monoscript/fileName/TMP_UiFrameRateCounter.cs: b01021aea19247f14a98ab338907956a ->
custom:scripting/monoscript/fileName/TMPro_InstructionOverlay.cs: b626d2270e6ebd5c4311585c18b58d8d ->
custom:scripting/monoscript/fileName/TMP_DigitValidator.cs: ac02af96215ae3951a3cce9e1a8c6085 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
[usbmuxd] Detached: 4 00008101-001A715111B8001E custom:scripting/monoscript/fileName/Benchmark01_UGUI.cs: 6148cfe2627b7708298f301788144139 ->
[usbmuxd] Attached: 5 00008101-001A715111B8001E custom:scripting/precompiled-assembly-types:Assembly-CSharp: 44db876853d5de1ad65b7cc1a08bd65f ->
custom:scripting/monoscript/fileName/Benchmark03.cs: 17cc87e0529ac71d909a946afb47a274 ->
...@@ -61,7 +61,7 @@ PlayerSettings: ...@@ -61,7 +61,7 @@ PlayerSettings:
allowedAutorotateToPortrait: 0 allowedAutorotateToPortrait: 0
allowedAutorotateToPortraitUpsideDown: 0 allowedAutorotateToPortraitUpsideDown: 0
allowedAutorotateToLandscapeRight: 1 allowedAutorotateToLandscapeRight: 1
allowedAutorotateToLandscapeLeft: 1 allowedAutorotateToLandscapeLeft: 0
useOSAutorotation: 1 useOSAutorotation: 1
use32BitDisplayBuffer: 1 use32BitDisplayBuffer: 1
preserveFramebufferAlpha: 0 preserveFramebufferAlpha: 0
......
...@@ -14,17 +14,92 @@ MonoBehaviour: ...@@ -14,17 +14,92 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_PixelRect: m_PixelRect:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 621
y: 63 y: 230
width: 1710 width: 641
height: 602
m_ShowMode: 0
m_Title: Build Settings
m_RootView: {fileID: 4}
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_Maximized: 0
--- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_PixelRect:
serializedVersion: 2
x: -1
y: 53
width: 1920
height: 975 height: 975
m_ShowMode: 4 m_ShowMode: 4
m_Title: "\u9879\u76EE" m_Title: Project
m_RootView: {fileID: 2} m_RootView: {fileID: 5}
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 0 m_Maximized: 1
--- !u!114 &2 --- !u!114 &3
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: BuildPlayerWindow
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 641
height: 602
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
m_Selected: 0
m_LastSelected: 0
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children:
- {fileID: 3}
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 641
height: 602
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
vertical: 0
controlID: 4705
draggingID: 0
--- !u!114 &5
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -37,14 +112,14 @@ MonoBehaviour: ...@@ -37,14 +112,14 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 3} - {fileID: 6}
- {fileID: 5} - {fileID: 8}
- {fileID: 4} - {fileID: 7}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1710 width: 1920
height: 975 height: 975
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
...@@ -52,7 +127,7 @@ MonoBehaviour: ...@@ -52,7 +127,7 @@ MonoBehaviour:
m_TopViewHeight: 30 m_TopViewHeight: 30
m_UseBottomView: 1 m_UseBottomView: 1
m_BottomViewHeight: 20 m_BottomViewHeight: 20
--- !u!114 &3 --- !u!114 &6
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -69,12 +144,12 @@ MonoBehaviour: ...@@ -69,12 +144,12 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1710 width: 1920
height: 30 height: 30
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
m_LastLoadedLayoutName: m_LastLoadedLayoutName:
--- !u!114 &4 --- !u!114 &7
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -91,11 +166,11 @@ MonoBehaviour: ...@@ -91,11 +166,11 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 955 y: 955
width: 1710 width: 1920
height: 20 height: 20
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
--- !u!114 &5 --- !u!114 &8
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -108,20 +183,20 @@ MonoBehaviour: ...@@ -108,20 +183,20 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 6} - {fileID: 9}
- {fileID: 11} - {fileID: 14}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 30 y: 30
width: 1710 width: 1920
height: 925 height: 925
m_MinSize: {x: 300, y: 100} m_MinSize: {x: 300, y: 100}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
controlID: 3069 controlID: 47
draggingID: 0 draggingID: 0
--- !u!114 &6 --- !u!114 &9
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -134,20 +209,20 @@ MonoBehaviour: ...@@ -134,20 +209,20 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 7}
- {fileID: 10} - {fileID: 10}
- {fileID: 13}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1270 width: 1348.5
height: 925 height: 925
m_MinSize: {x: 200, y: 100} m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
controlID: 3075 controlID: 48
draggingID: 0 draggingID: 0
--- !u!114 &7 --- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -160,20 +235,20 @@ MonoBehaviour: ...@@ -160,20 +235,20 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 8} - {fileID: 11}
- {fileID: 9} - {fileID: 12}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1270 width: 1348.5
height: 436 height: 514
m_MinSize: {x: 200, y: 50} m_MinSize: {x: 200, y: 50}
m_MaxSize: {x: 16192, y: 8096} m_MaxSize: {x: 16192, y: 8096}
vertical: 0 vertical: 0
controlID: 3122 controlID: 39
draggingID: 0 draggingID: 0
--- !u!114 &8 --- !u!114 &11
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -190,16 +265,16 @@ MonoBehaviour: ...@@ -190,16 +265,16 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 312 width: 333
height: 436 height: 514
m_MinSize: {x: 201, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 13} m_ActualView: {fileID: 17}
m_Panes: m_Panes:
- {fileID: 13} - {fileID: 17}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &9 --- !u!114 &12
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -214,19 +289,19 @@ MonoBehaviour: ...@@ -214,19 +289,19 @@ MonoBehaviour:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 312 x: 333
y: 0 y: 0
width: 958 width: 1015.5
height: 436 height: 514
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 12} m_ActualView: {fileID: 18}
m_Panes: m_Panes:
- {fileID: 12} - {fileID: 18}
- {fileID: 14} - {fileID: 16}
m_Selected: 0 m_Selected: 0
m_LastSelected: 1 m_LastSelected: 1
--- !u!114 &10 --- !u!114 &13
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -242,19 +317,19 @@ MonoBehaviour: ...@@ -242,19 +317,19 @@ MonoBehaviour:
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 436 y: 514
width: 1270 width: 1348.5
height: 489 height: 411
m_MinSize: {x: 231, y: 271} m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021} m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 15} m_ActualView: {fileID: 19}
m_Panes: m_Panes:
- {fileID: 15} - {fileID: 19}
- {fileID: 16} - {fileID: 20}
- {fileID: 17} - {fileID: 21}
m_Selected: 0 m_Selected: 0
m_LastSelected: 1 m_LastSelected: 1
--- !u!114 &11 --- !u!114 &14
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -269,18 +344,203 @@ MonoBehaviour: ...@@ -269,18 +344,203 @@ MonoBehaviour:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 1270 x: 1348.5
y: 0 y: 0
width: 440 width: 571.5
height: 925 height: 925
m_MinSize: {x: 276, y: 71} m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 18} m_ActualView: {fileID: 22}
m_Panes: m_Panes:
- {fileID: 18} - {fileID: 22}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &12 --- !u!114 &15
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12043, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 640, y: 580}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Build Settings
m_Image: {fileID: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 621
y: 230
width: 641
height: 581
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs:
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 0}
m_SearchString:
--- !u!114 &16
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 13974, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Simulator
m_Image: {fileID: 3038311277492192215, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 333
y: 83
width: 1013.5
height: 516
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_SerializedViewNames:
- UnityEditor.GameView
m_SerializedViewValues:
- /Users/gr/Documents/UnityProject/AndroidDemo2/Demo/Library/PlayModeViewStates/f6903766753da42a2943ff2699441299
m_PlayModeViewName: Device Simulator
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 1}
m_TargetSize: {x: 2340, y: 1080}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
m_EnterPlayModeBehavior: 2
m_UseMipMap: 0
m_SimulatorState:
controlPanelVisible: 0
controlPanelWidth: NaN
controlPanelFoldoutKeys:
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
controlPanelFoldoutValues: 00
pluginNames:
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
pluginStates:
- '{}'
scale: 10
fitToScreenEnabled: 1
rotationDegree: 90
highlightSafeAreaEnabled: 0
friendlyName: Google Pixel 5
screenIndex: 0
networkReachability: 1
systemLanguage: 10
--- !u!114 &17
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Hierarchy
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: -1
y: 83
width: 332
height: 493
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: c45dffff105effffce5fffff4c66ffff9866ffff7868ffff5875ffffa475ffff6e77ffffb87cffff047dfffff07effff8889ffffd489ffffbe8bffffee91ffff3a92ffff2694ffff8ef4ffffdaf4ffff88f6ffff2afbffffea620000ae840000b88e0000e28e0000fe8e0000108f0000508f0000988f0000b0930000da930000089400009094000092a1000058a20000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 11}
m_SearchString:
m_ExpandedScenes: []
m_CurrenRootInstanceID: 0
m_LockTracker:
m_IsLocked: 0
m_CurrentSortingName: TransformSorting
m_WindowGUID: 4c969a2b90040154d917609493e03593
--- !u!114 &18
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -295,15 +555,15 @@ MonoBehaviour: ...@@ -295,15 +555,15 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 200} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4000, y: 4000}
m_TitleContent: m_TitleContent:
m_Text: "\u573A\u666F" m_Text: Scene
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 312 x: 332
y: 93 y: 83
width: 956 width: 1013.5
height: 415 height: 493
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -786,7 +1046,7 @@ MonoBehaviour: ...@@ -786,7 +1046,7 @@ MonoBehaviour:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
displayed: 1 displayed: 1
snapOffset: {x: 48, y: 10} snapOffset: {x: 48, y: 48}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 0
id: UnityEditor.SceneViewCameraOverlay id: UnityEditor.SceneViewCameraOverlay
...@@ -831,9 +1091,9 @@ MonoBehaviour: ...@@ -831,9 +1091,9 @@ MonoBehaviour:
m_PlayAudio: 0 m_PlayAudio: 0
m_AudioPlay: 0 m_AudioPlay: 0
m_Position: m_Position:
m_Target: {x: 895.5244, y: 503.87256, z: -13.946046} m_Target: {x: 101.899216, y: 302.4853, z: -5.3658557}
speed: 2 speed: 2
m_Value: {x: 895.5244, y: 503.87256, z: -13.946046} m_Value: {x: 101.899216, y: 302.4853, z: -5.3658557}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
...@@ -883,9 +1143,9 @@ MonoBehaviour: ...@@ -883,9 +1143,9 @@ MonoBehaviour:
speed: 2 speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1} m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size: m_Size:
m_Target: 1404.6097 m_Target: 663.0747
speed: 2 speed: 2
m_Value: 1404.6097 m_Value: 663.0747
m_Ortho: m_Ortho:
m_Target: 1 m_Target: 1
speed: 2 speed: 2
...@@ -910,136 +1170,7 @@ MonoBehaviour: ...@@ -910,136 +1170,7 @@ MonoBehaviour:
m_SceneVisActive: 1 m_SceneVisActive: 1
m_LastLockedObject: {fileID: 0} m_LastLockedObject: {fileID: 0}
m_ViewIsLockedToObject: 0 m_ViewIsLockedToObject: 0
--- !u!114 &13 --- !u!114 &19
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: "\u5C42\u7EA7"
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 93
width: 311
height: 415
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 7086feffba86feff7888feff9089feff788ffeffc48ffeff7491feff86a1feffd0a1feff80a3feff4ac6feff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 8}
m_SearchString:
m_ExpandedScenes: []
m_CurrenRootInstanceID: 0
m_LockTracker:
m_IsLocked: 0
m_CurrentSortingName: TransformSorting
m_WindowGUID: 4c969a2b90040154d917609493e03593
--- !u!114 &14
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 13974, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: "\u6A21\u62DF\u5668"
m_Image: {fileID: 3038311277492192215, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 312
y: 93
width: 956
height: 415
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_SerializedViewNames:
- UnityEditor.GameView
m_SerializedViewValues:
- /Users/gr/Documents/UnityProject/AndroidDemo2/Demo/Library/PlayModeViewStates/f6903766753da42a2943ff2699441299
m_PlayModeViewName: Device Simulator
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 1}
m_TargetSize: {x: 2340, y: 1080}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
m_EnterPlayModeBehavior: 2
m_UseMipMap: 0
m_SimulatorState:
controlPanelVisible: 0
controlPanelWidth: NaN
controlPanelFoldoutKeys:
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
controlPanelFoldoutValues: 00
pluginNames:
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
pluginStates:
- '{}'
scale: 10
fitToScreenEnabled: 1
rotationDegree: 90
highlightSafeAreaEnabled: 0
friendlyName: Google Pixel 5
screenIndex: 0
networkReachability: 1
systemLanguage: 10
--- !u!114 &15
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1054,15 +1185,15 @@ MonoBehaviour: ...@@ -1054,15 +1185,15 @@ MonoBehaviour:
m_MinSize: {x: 230, y: 250} m_MinSize: {x: 230, y: 250}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_TitleContent: m_TitleContent:
m_Text: "\u9879\u76EE" m_Text: Project
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: -1
y: 529 y: 597
width: 1269 width: 1347.5
height: 468 height: 390
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -1084,7 +1215,7 @@ MonoBehaviour: ...@@ -1084,7 +1215,7 @@ MonoBehaviour:
m_SkipHidden: 0 m_SkipHidden: 0
m_SearchArea: 1 m_SearchArea: 1
m_Folders: m_Folders:
- Assets/Plugins/Ios - Assets/Plugins/Android/libs
m_Globs: [] m_Globs: []
m_OriginalText: m_OriginalText:
m_ImportLogFlags: 0 m_ImportLogFlags: 0
...@@ -1092,16 +1223,16 @@ MonoBehaviour: ...@@ -1092,16 +1223,16 @@ MonoBehaviour:
m_ViewMode: 1 m_ViewMode: 1
m_StartGridSize: 64 m_StartGridSize: 64
m_LastFolders: m_LastFolders:
- Assets/Plugins/Ios - Assets/Plugins/Android/libs
m_LastFoldersGridSize: -1 m_LastFoldersGridSize: -1
m_LastProjectPath: /Users/fengchao/Desktop/UnityDemo m_LastProjectPath: /Users/gr/Documents/UnityProject/Unity20251010Test
m_LockTracker: m_LockTracker:
m_IsLocked: 0 m_IsLocked: 0
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: 8a070000 m_SelectedIDs: 329c0000
m_LastClickedID: 1930 m_LastClickedID: 39986
m_ExpandedIDs: 0000000002060000320600006a0600005207000000ca9a3b m_ExpandedIDs: 000000002a5d00002c5d0000325d00009e8500002e9c0000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1117,7 +1248,7 @@ MonoBehaviour: ...@@ -1117,7 +1248,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 10} m_ClientGUIView: {fileID: 13}
m_SearchString: m_SearchString:
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
...@@ -1129,7 +1260,7 @@ MonoBehaviour: ...@@ -1129,7 +1260,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 0000000002060000320600006a0600005207000000ca9a3b m_ExpandedIDs: 000000002a5d00002c5d0000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1173,7 +1304,7 @@ MonoBehaviour: ...@@ -1173,7 +1304,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 10} m_ClientGUIView: {fileID: 0}
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
m_InstanceID: 0 m_InstanceID: 0
...@@ -1185,7 +1316,7 @@ MonoBehaviour: ...@@ -1185,7 +1316,7 @@ MonoBehaviour:
m_GridSize: 64 m_GridSize: 64
m_SkipHiddenPackages: 0 m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 207 m_DirectoriesAreaWidth: 207
--- !u!114 &16 --- !u!114 &20
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1200,15 +1331,15 @@ MonoBehaviour: ...@@ -1200,15 +1331,15 @@ MonoBehaviour:
m_MinSize: {x: 100, y: 100} m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4000, y: 4000}
m_TitleContent: m_TitleContent:
m_Text: "\u63A7\u5236\u53F0" m_Text: Console
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0} m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 1
y: 529 y: 620
width: 1269 width: 1347.5
height: 468 height: 367
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
...@@ -1219,7 +1350,7 @@ MonoBehaviour: ...@@ -1219,7 +1350,7 @@ MonoBehaviour:
m_LastAppliedPresetName: Default m_LastAppliedPresetName: Default
m_SaveData: [] m_SaveData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
--- !u!114 &17 --- !u!114 &21
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1239,7 +1370,7 @@ MonoBehaviour: ...@@ -1239,7 +1370,7 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 1
y: 620 y: 620
width: 1347.5 width: 1347.5
height: 367 height: 367
...@@ -1254,7 +1385,7 @@ MonoBehaviour: ...@@ -1254,7 +1385,7 @@ MonoBehaviour:
m_SaveData: [] m_SaveData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
mForceToReOpen: 0 mForceToReOpen: 0
--- !u!114 &18 --- !u!114 &22
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1269,14 +1400,14 @@ MonoBehaviour: ...@@ -1269,14 +1400,14 @@ MonoBehaviour:
m_MinSize: {x: 275, y: 50} m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4000, y: 4000}
m_TitleContent: m_TitleContent:
m_Text: "\u68C0\u67E5\u5668" m_Text: Inspector
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 1270 x: 1347.5
y: 93 y: 83
width: 439 width: 570.5
height: 904 height: 904
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment