Commit b93920c1 authored by fengchao's avatar fengchao
Browse files

fix(code):完善iOS脚本

parent 9afe0685
<Properties StartupConfiguration="{991ACB7A-CC85-4B1E-CE9A-C9C5FDEC3F6F}|">
<MonoDevelop.Ide.Workbench ActiveDocument="Assets/Scripts/sdk/ui/BtnManager.cs">
<MonoDevelop.Ide.Workbench ActiveDocument="Assets/Plugins/Editor/IOSPostBuildProcessor.cs">
<Files>
<File FileName="Assets/Scripts/sdk/ui/BtnManager.cs" Line="100" Column="36" />
<File FileName="Assets/Scripts/sdk/core/HoolaiSdkManager.cs" Line="105" Column="61" />
<File FileName="Assets/Scripts/sdk/core/IosSdkInterface.cs" Line="42" Column="1" />
<File FileName="Assets/Scripts/sdk/core/PlatformCallback.cs" Line="1" Column="1" />
<File FileName="Assets/Plugins/Editor/IOSPostBuildProcessor.cs" Line="151" Column="10" />
<File FileName="Assets/Scripts/sdk/data/PlayerInfo.cs" Line="64" Column="46" />
<File FileName="Assets/Scripts/sdk/core/HoolaiSdkManager.cs" />
<File FileName="Assets/Scripts/sdk/core/IosSdkInterface.cs" />
<File FileName="Assets/Scripts/sdk/core/PlatformCallback.cs" />
<File FileName="Assets/Plugins/Editor/IOSPostBuildProcessor.cs" Line="23" Column="26" />
<File FileName="Assets/Scripts/sdk/data/PlayerInfo.cs" />
</Files>
<Pads>
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="UnityDemo" expanded="True" selected="True" />
<Node name="UnityDemo" expanded="True">
<Node name="Assets" expanded="True">
<Node name="Scripts" expanded="True">
<Node name="sdk" expanded="True">
<Node name="ui" expanded="True">
<Node name="BtnManager.cs" selected="True" />
</Node>
</Node>
</Node>
</Node>
</Node>
</State>
</Pad>
</Pads>
</MonoDevelop.Ide.Workbench>
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.ItemProperties.Assembly-CSharp PreferredExecutionTarget="4229f6d5-4a61-4478-b611-ec2bc5234fb7" />
<MonoDevelop.Ide.ItemProperties.Assembly-CSharp PreferredExecutionTarget="3cf7aebe-5e1b-432d-a765-09c77bf8e2a4" />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore />
</MonoDevelop.Ide.DebuggingService.Breakpoints>
......
......@@ -6,9 +6,15 @@ using UnityEditor.iOS.Xcode;
using System.IO;
using System;
public static class IOSPostBuildProcessor
{
// 全局配置变量
private static readonly string BUNDLE_IDENTIFIER = "com.hoolai.saintseiya";
private static readonly string ACCESS_SDK_SCHEME_SUFFIX = "223333";
private static readonly string TRACKING_USAGE_DESCRIPTION = "想访问您的设备标识符(IDFA)用于广告追踪";
private static readonly string PHOTO_LIBRARY_USAGE_DESCRIPTION = "将要保存截图到相册";
private static readonly string PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION = "将要访问您的相册";
[PostProcessBuild]
public static void OnPostProcessBuild(BuildTarget target, string pathToBuiltProject)
{
......@@ -29,7 +35,7 @@ public static class IOSPostBuildProcessor
#endif
// ✅ 设置 Bundle ID
SetBundleIdentifier(proj, mainTarget, "com.hoolai.saintseiya");
SetBundleIdentifier(proj, mainTarget, BUNDLE_IDENTIFIER);
// ✅ 添加系统 Framework
string[] frameworks = {
......@@ -57,45 +63,12 @@ public static class IOSPostBuildProcessor
// ✅ 修正引用路径
FixFileReference(proj, frameworkTarget, pathToBuiltProject);
// ✅ 复制UnityFramework的所有搜索路径到主Target
//CopyUnityFrameworkSearchPaths(proj, mainTarget, frameworkTarget);
// ✅ 保存工程
proj.WriteToFile(projPath);
Debug.Log("🎉 [IOSPostBuildProcessor] 自动化配置完成!");
}
//private static void CopyUnityFrameworkSearchPaths(PBXProject proj, string mainTarget, string frameworkTarget)
// {
// // ✅ 复制UnityFramework的所有搜索路径到主Target
// Debug.Log("🔧 开始复制UnityFramework所有搜索路径到主Target...");
// // 要拷贝的搜索路径类型
// string[] searchPathTypes = {
// "HEADER_SEARCH_PATHS",
// "FRAMEWORK_SEARCH_PATHS",
// "LIBRARY_SEARCH_PATHS"
// };
// foreach (string pathType in searchPathTypes){
// // 先确保包含 inherited
// proj.AddBuildProperty(mainTarget, pathType, "$(inherited)");
// var frameworkPaths = proj.GetBuildPropertyForAnyConfig(frameworkTarget, pathType);
// if (!string.IsNullOrEmpty(frameworkPaths)){
// // frameworkPaths 可能包含多个路径,用空格分割
// var paths = frameworkPaths.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
// foreach (var p in paths){
// proj.AddBuildProperty(mainTarget, pathType, p);
// }
// Debug.Log($"✅ 已追加{pathType}: {frameworkPaths}");
// }else{
// Debug.Log($"ℹ️ {pathType} 在FrameworkTarget中为空");
// }
// }
//}
private static void SetBundleIdentifier(PBXProject proj, string targetGuid, string bundleId)
{
if (string.IsNullOrEmpty(bundleId)){
......@@ -106,7 +79,7 @@ public static class IOSPostBuildProcessor
Debug.Log($"📦 Bundle Identifier 已设置为:{bundleId}");
}
private static void UpdatePlist(string pathToBuiltProject, string accessSdkScheme = "accesssdk22")
private static void UpdatePlist(string pathToBuiltProject)
{
string plistPath = Path.Combine(pathToBuiltProject, "Info.plist");
if (!File.Exists(plistPath)){
......@@ -119,9 +92,10 @@ public static class IOSPostBuildProcessor
PlistElementDict root = plist.root;
string gameName = PlayerSettings.productName;
root.SetString("NSUserTrackingUsageDescription", $"{gameName} 想访问您的设备标识符(IDFA)用于广告追踪");
root.SetString("NSPhotoLibraryUsageDescription", "将要保存截图到相册");
root.SetString("NSPhotoLibraryAddUsageDescription", "将要访问您的相册");
root.SetString("NSUserTrackingUsageDescription", $"{gameName} {TRACKING_USAGE_DESCRIPTION}");
root.SetString("NSPhotoLibraryUsageDescription", $"{gameName} {PHOTO_LIBRARY_USAGE_DESCRIPTION}");
root.SetString("NSPhotoLibraryAddUsageDescription", $"{gameName} {PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION}");
root.SetBoolean("NSAppTransportSecurity:NSAllowsArbitraryLoads", true);
// ✅ 添加 URL Types
PlistElementArray urlTypes;
......@@ -133,7 +107,7 @@ public static class IOSPostBuildProcessor
PlistElementDict newUrlType = urlTypes.AddDict();
newUrlType.SetString("CFBundleTypeRole", "Editor");
PlistElementArray urlSchemes = newUrlType.CreateArray("CFBundleURLSchemes");
urlSchemes.AddString(accessSdkScheme);
urlSchemes.AddString("accesssdk" + ACCESS_SDK_SCHEME_SUFFIX);
plist.WriteToFile(plistPath);
Debug.Log("📄 Info.plist 已更新");
......@@ -214,4 +188,4 @@ public static class IOSPostBuildProcessor
Debug.Log("✅ 已添加新的 UnityAppController 引用");
}
}
#endif
#endif
\ No newline at end of file
Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release
Build type: Release
Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362)
Darwin version: 25.0.0
Architecture: arm64
Running under Rosetta: NO
Available memory: 24576 MB
Using pre-set license
Pro License: YES
COMMAND LINE ARGUMENTS:
/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MacOS/Unity
-adb2
-batchMode
-noUpm
-name
AssetImportWorker0
-projectPath
/Users/fengchao/Desktop/UnityDemo
-logFile
Logs/AssetImportWorker0.log
-srvPort
60069
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
/Users/fengchao/Desktop/UnityDemo
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=33554432"
"memorysetup-bucket-allocator-block-count=8"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=33554432"
"memorysetup-profiler-bucket-allocator-block-count=8"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=16777216"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-allocator-temp-initial-block-size-main=262144"
"memorysetup-allocator-temp-initial-block-size-worker=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=33554432"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] 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 [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 [8778041344] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
Refreshing native plugins compatible for Editor in 14.39 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
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 /Users/fengchao/Desktop/UnityDemo/Assets
GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power)
Metal devices available: 1
0: Apple M2 (high power)
Using device Apple M2 (high power)
Initializing Metal device caps: Apple M2
Initialize mono
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 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
Begin MonoManager ReloadAssembly
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/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.001509 seconds.
- Loaded All Assemblies, in 0.258 seconds
[usbmuxd] Start listen thread
[usbmuxd] Listen thread started
[usbmuxd] Send listen message
[usbmuxd] Attached: 4 00008101-001A715111B8001E
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.204 seconds
Domain Reload Profiling: 461ms
BeginReloadAssembly (93ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (0ms)
RebuildCommonClasses (22ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (107ms)
LoadAssemblies (93ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (105ms)
TypeCache.Refresh (103ms)
TypeCache.ScanAssembly (89ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms)
FinalizeReload (204ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (176ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (66ms)
SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (81ms)
ProcessInitializeOnLoadMethodAttributes (23ms)
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.408 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.385 seconds
Domain Reload Profiling: 792ms
BeginReloadAssembly (67ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (10ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (20ms)
LoadAllAssembliesAndSetupDomain (295ms)
LoadAssemblies (211ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (117ms)
TypeCache.Refresh (103ms)
TypeCache.ScanAssembly (90ms)
ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (3ms)
FinalizeReload (385ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (305ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (168ms)
ProcessInitializeOnLoadMethodAttributes (87ms)
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.18 seconds
Refreshing native plugins compatible for Editor in 2.51 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (49.7 KB). Loaded Objects now: 4885.
Memory consumption went from 162.2 MB to 162.2 MB.
Total: 6.205500 ms (FindLiveObjects: 0.155167 ms CreateObjectMapping: 0.076583 ms MarkObjects: 5.681916 ms DeleteObjects: 0.291333 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
Caller must complete domain reload
Begin MonoManager ReloadAssembly
Thread 0x170f93000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.248 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.469 seconds
Domain Reload Profiling: 717ms
BeginReloadAssembly (87ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (2ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (31ms)
RebuildCommonClasses (20ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (12ms)
LoadAllAssembliesAndSetupDomain (123ms)
LoadAssemblies (138ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (16ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (469ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (284ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.21 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: 4889.
Memory consumption went from 164.7 MB to 164.6 MB.
Total: 5.317917 ms (FindLiveObjects: 0.158583 ms CreateObjectMapping: 0.092875 ms MarkObjects: 5.035958 ms DeleteObjects: 0.030000 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 Import Request.
Time since last request: 105801.980925 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: '266689eb5c854d29280aa03b617471d4') in 0.001608 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 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.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4893.
Memory consumption went from 171.3 MB to 171.2 MB.
Total: 5.363417 ms (FindLiveObjects: 0.165208 ms CreateObjectMapping: 0.083542 ms MarkObjects: 5.081417 ms DeleteObjects: 0.032708 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 Import Request.
Time since last request: 8.100545 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: 'bdf8ae66645415926eee54a130f3d5f6') in 0.001171 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 0x170f93000 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.464 seconds
Domain Reload Profiling: 698ms
BeginReloadAssembly (75ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (23ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (121ms)
LoadAssemblies (137ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (6ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (464ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (13ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.24 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: 4897.
Memory consumption went from 178.3 MB to 178.3 MB.
Total: 5.644708 ms (FindLiveObjects: 0.154791 ms CreateObjectMapping: 0.085708 ms MarkObjects: 5.367959 ms DeleteObjects: 0.035583 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 2.80 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: 4897.
Memory consumption went from 110.1 MB to 110.1 MB.
Total: 6.606708 ms (FindLiveObjects: 0.154917 ms CreateObjectMapping: 0.081542 ms MarkObjects: 6.357333 ms DeleteObjects: 0.012458 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
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.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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4905.
Memory consumption went from 191.7 MB to 191.7 MB.
Total: 5.688750 ms (FindLiveObjects: 0.161333 ms CreateObjectMapping: 0.093542 ms MarkObjects: 5.398959 ms DeleteObjects: 0.034417 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 2.82 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: 4905.
Memory consumption went from 123.4 MB to 123.3 MB.
Total: 5.378083 ms (FindLiveObjects: 0.142375 ms CreateObjectMapping: 0.079708 ms MarkObjects: 5.142584 ms DeleteObjects: 0.012958 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 3.02 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: 4905.
Memory consumption went from 122.2 MB to 122.2 MB.
Total: 19.151875 ms (FindLiveObjects: 0.239875 ms CreateObjectMapping: 0.103959 ms MarkObjects: 18.740750 ms DeleteObjects: 0.066959 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 0x170f93000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.337 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.854 seconds
Domain Reload Profiling: 1191ms
BeginReloadAssembly (93ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (29ms)
RebuildCommonClasses (21ms)
RebuildNativeTypeToScriptingClass (8ms)
initialDomainReloadingComplete (25ms)
LoadAllAssembliesAndSetupDomain (191ms)
LoadAssemblies (211ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms)
FinalizeReload (854ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (370ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (201ms)
ProcessInitializeOnLoadMethodAttributes (114ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.75 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: 4909.
Memory consumption went from 196.5 MB to 196.5 MB.
Total: 5.670958 ms (FindLiveObjects: 0.155750 ms CreateObjectMapping: 0.074666 ms MarkObjects: 5.401500 ms DeleteObjects: 0.038250 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 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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4913.
Memory consumption went from 203.3 MB to 203.3 MB.
Total: 5.239833 ms (FindLiveObjects: 0.155042 ms CreateObjectMapping: 0.085541 ms MarkObjects: 4.966792 ms DeleteObjects: 0.031916 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 0x170f93000 may have been prematurely finalized
Symbol file LoadedFromMemory is not a mono symbol file
- Loaded All Assemblies, in 0.340 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.770 seconds
Domain Reload Profiling: 1109ms
BeginReloadAssembly (72ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (20ms)
RebuildCommonClasses (27ms)
RebuildNativeTypeToScriptingClass (28ms)
initialDomainReloadingComplete (30ms)
LoadAllAssembliesAndSetupDomain (182ms)
LoadAssemblies (197ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (770ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (278ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (37ms)
ProcessInitializeOnLoadAttributes (144ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4917.
Memory consumption went from 209.7 MB to 209.7 MB.
Total: 5.211667 ms (FindLiveObjects: 0.145125 ms CreateObjectMapping: 0.082708 ms MarkObjects: 4.949500 ms DeleteObjects: 0.033542 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 2.86 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: 4917.
Memory consumption went from 141.3 MB to 141.3 MB.
Total: 6.693375 ms (FindLiveObjects: 0.186209 ms CreateObjectMapping: 0.083666 ms MarkObjects: 6.397792 ms DeleteObjects: 0.025291 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 ->
[usbmuxd] Detached: 4 00008101-001A715111B8001E
[usbmuxd] Attached: 5 00008101-001A715111B8001E
Unity Editor version: 2022.3.62f2c1 (92e6e6be66dc)
Branch: 2022.3/china_unity/release
Build type: Release
Batch mode: YES
macOS version: Version 26.0.1 (Build 25A362)
Darwin version: 25.0.0
Architecture: arm64
Running under Rosetta: NO
Available memory: 24576 MB
Using pre-set license
Pro License: YES
COMMAND LINE ARGUMENTS:
/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/MacOS/Unity
-adb2
-batchMode
-noUpm
-name
AssetImportWorker1
-projectPath
/Users/fengchao/Desktop/UnityDemo
-logFile
Logs/AssetImportWorker1.log
-srvPort
60069
Successfully changed project path to: /Users/fengchao/Desktop/UnityDemo
/Users/fengchao/Desktop/UnityDemo
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=33554432"
"memorysetup-bucket-allocator-block-count=8"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=33554432"
"memorysetup-profiler-bucket-allocator-block-count=8"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=16777216"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-allocator-temp-initial-block-size-main=262144"
"memorysetup-allocator-temp-initial-block-size-worker=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=33554432"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144"
Player connection [8778041344] 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 [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 [8778041344] Host joined multi-casting on [225.0.0.222:54997]...
Player connection [8778041344] Host joined alternative multi-casting on [225.0.0.222:34997]...
Input System module state changed to: Initialized.
[PhysX] Initialized MultithreadedTaskDispatcher with 8 workers.
Refreshing native plugins compatible for Editor in 14.38 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
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 /Users/fengchao/Desktop/UnityDemo/Assets
GfxDevice: creating device client; threaded=0; jobified=0
preferred device: Apple M2 (high power)
Metal devices available: 1
0: Apple M2 (high power)
Using device Apple M2 (high power)
Initializing Metal device caps: Apple M2
Initialize mono
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 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
Begin MonoManager ReloadAssembly
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/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll
Registered in 0.001471 seconds.
- Loaded All Assemblies, in 0.258 seconds
[usbmuxd] Start listen thread
[usbmuxd] Listen thread started
[usbmuxd] Send listen message
[usbmuxd] Attached: 4 00008101-001A715111B8001E
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.204 seconds
Domain Reload Profiling: 462ms
BeginReloadAssembly (93ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (0ms)
RebuildCommonClasses (22ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (107ms)
LoadAssemblies (93ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (105ms)
TypeCache.Refresh (103ms)
TypeCache.ScanAssembly (89ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (1ms)
FinalizeReload (204ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (175ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (71ms)
SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (1ms)
ProcessInitializeOnLoadAttributes (76ms)
ProcessInitializeOnLoadMethodAttributes (23ms)
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.408 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.384 seconds
Domain Reload Profiling: 793ms
BeginReloadAssembly (66ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (10ms)
RebuildCommonClasses (20ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (20ms)
LoadAllAssembliesAndSetupDomain (295ms)
LoadAssemblies (209ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (118ms)
TypeCache.Refresh (104ms)
TypeCache.ScanAssembly (91ms)
ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (3ms)
FinalizeReload (384ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (305ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (12ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (34ms)
ProcessInitializeOnLoadAttributes (168ms)
ProcessInitializeOnLoadMethodAttributes (87ms)
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.18 seconds
Refreshing native plugins compatible for Editor in 2.50 ms, found 2 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 4414 Unused Serialized files (Serialized files now loaded: 0)
Unloading 27 unused Assets / (49.7 KB). Loaded Objects now: 4885.
Memory consumption went from 162.3 MB to 162.2 MB.
Total: 6.225208 ms (FindLiveObjects: 0.154500 ms CreateObjectMapping: 0.072500 ms MarkObjects: 5.777584 ms DeleteObjects: 0.220041 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
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.254 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.464 seconds
Domain Reload Profiling: 718ms
BeginReloadAssembly (95ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (41ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (121ms)
LoadAssemblies (137ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (15ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (464ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (283ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (148ms)
ProcessInitializeOnLoadMethodAttributes (82ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.21 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: 4889.
Memory consumption went from 164.7 MB to 164.7 MB.
Total: 5.314459 ms (FindLiveObjects: 0.141583 ms CreateObjectMapping: 0.089708 ms MarkObjects: 5.050417 ms DeleteObjects: 0.031709 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 Import Request.
Time since last request: 105499.653741 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: 'cf855e8af8564c1daf4e293dec8675e2') in 0.001028 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 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.
Unloading 4393 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4893.
Memory consumption went from 171.3 MB to 171.3 MB.
Total: 5.381500 ms (FindLiveObjects: 0.165709 ms CreateObjectMapping: 0.082500 ms MarkObjects: 5.103250 ms DeleteObjects: 0.029500 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.234 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.464 seconds
Domain Reload Profiling: 698ms
BeginReloadAssembly (75ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (24ms)
RebuildCommonClasses (19ms)
RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (11ms)
LoadAllAssembliesAndSetupDomain (121ms)
LoadAssemblies (136ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (465ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (287ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (35ms)
ProcessInitializeOnLoadAttributes (151ms)
ProcessInitializeOnLoadMethodAttributes (83ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (2ms)
Refreshing native plugins compatible for Editor in 2.25 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: 4897.
Memory consumption went from 178.5 MB to 178.4 MB.
Total: 5.645500 ms (FindLiveObjects: 0.155250 ms CreateObjectMapping: 0.083834 ms MarkObjects: 5.376458 ms DeleteObjects: 0.029417 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 2.80 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: 4897.
Memory consumption went from 110.0 MB to 110.0 MB.
Total: 6.672458 ms (FindLiveObjects: 0.155584 ms CreateObjectMapping: 0.082916 ms MarkObjects: 6.422042 ms DeleteObjects: 0.011791 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
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.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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4905.
Memory consumption went from 191.6 MB to 191.6 MB.
Total: 5.545292 ms (FindLiveObjects: 0.161625 ms CreateObjectMapping: 0.088583 ms MarkObjects: 5.256084 ms DeleteObjects: 0.038334 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 2.81 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: 4905.
Memory consumption went from 123.2 MB to 123.2 MB.
Total: 5.625584 ms (FindLiveObjects: 0.143334 ms CreateObjectMapping: 0.078791 ms MarkObjects: 5.393084 ms DeleteObjects: 0.009917 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 3.07 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: 4905.
Memory consumption went from 122.1 MB to 122.1 MB.
Total: 19.695791 ms (FindLiveObjects: 0.245292 ms CreateObjectMapping: 0.105667 ms MarkObjects: 19.294666 ms DeleteObjects: 0.049750 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.338 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.848 seconds
Domain Reload Profiling: 1186ms
BeginReloadAssembly (91ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (28ms)
RebuildCommonClasses (20ms)
RebuildNativeTypeToScriptingClass (9ms)
initialDomainReloadingComplete (22ms)
LoadAllAssembliesAndSetupDomain (195ms)
LoadAssemblies (214ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (17ms)
TypeCache.Refresh (8ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (4ms)
FinalizeReload (849ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (363ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (15ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (204ms)
ProcessInitializeOnLoadMethodAttributes (104ms)
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 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4909.
Memory consumption went from 196.4 MB to 196.4 MB.
Total: 5.762000 ms (FindLiveObjects: 0.147583 ms CreateObjectMapping: 0.072750 ms MarkObjects: 5.499000 ms DeleteObjects: 0.042083 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.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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4913.
Memory consumption went from 203.2 MB to 203.1 MB.
Total: 5.458875 ms (FindLiveObjects: 0.161375 ms CreateObjectMapping: 0.081292 ms MarkObjects: 5.184625 ms DeleteObjects: 0.031000 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.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.770 seconds
Domain Reload Profiling: 1108ms
BeginReloadAssembly (71ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (19ms)
RebuildCommonClasses (29ms)
RebuildNativeTypeToScriptingClass (26ms)
initialDomainReloadingComplete (36ms)
LoadAllAssembliesAndSetupDomain (175ms)
LoadAssemblies (190ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (14ms)
TypeCache.Refresh (7ms)
TypeCache.ScanAssembly (0ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (3ms)
FinalizeReload (770ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (278ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (14ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (36ms)
ProcessInitializeOnLoadAttributes (143ms)
ProcessInitializeOnLoadMethodAttributes (81ms)
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.
Unloading 4394 Unused Serialized files (Serialized files now loaded: 0)
Unloading 18 unused Assets / (29.6 KB). Loaded Objects now: 4917.
Memory consumption went from 209.6 MB to 209.6 MB.
Total: 5.168334 ms (FindLiveObjects: 0.144500 ms CreateObjectMapping: 0.093750 ms MarkObjects: 4.898375 ms DeleteObjects: 0.030917 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 2.87 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: 4917.
Memory consumption went from 141.2 MB to 141.2 MB.
Total: 6.797542 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.083166 ms MarkObjects: 6.512708 ms DeleteObjects: 0.022333 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 ->
[usbmuxd] Detached: 4 00008101-001A715111B8001E
[usbmuxd] Attached: 5 00008101-001A715111B8001E
Base path: '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2022.3.62f2c1/Unity.app/Contents/PlaybackEngines'
Cmd: initializeCompiler
......@@ -13,7 +13,7 @@ PlayerSettings:
useOnDemandResources: 0
accelerometerFrequency: 60
companyName: hoolai
productName: Unity
productName: UnityDemo
defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
......
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