From fee0429dd6a7ef7192041014f560ca654eeb5574 Mon Sep 17 00:00:00 2001 From: Dan Strano Date: Thu, 14 Jul 2022 00:33:22 -0700 Subject: [PATCH] Update meta, for Qrack plugin OS/CPU mapping --- .../x86_64/libqrack_pinvoke.7.1.1.dylib.meta | 37 ++ .../iOS/libqrack_pinvoke.7.1.1.dylib.meta | 41 +- Assets/Qrack/Qasm/TeleportAlice.cs | 7 +- Assets/Qrack/Qasm/TeleportBob.cs | 5 +- Assets/Qrack/Scripts/QuantumManager.cs | 8 +- Logs/AssetImportWorker0.log | 564 ------------------ Logs/shadercompiler-AssetImportWorker0.log | 3 - UserSettings/EditorUserSettings.asset | 18 +- 8 files changed, 93 insertions(+), 590 deletions(-) delete mode 100644 Logs/AssetImportWorker0.log delete mode 100644 Logs/shadercompiler-AssetImportWorker0.log diff --git a/Assets/Qrack/Plugin/Mac/x86_64/libqrack_pinvoke.7.1.1.dylib.meta b/Assets/Qrack/Plugin/Mac/x86_64/libqrack_pinvoke.7.1.1.dylib.meta index fb996544..36daead9 100644 --- a/Assets/Qrack/Plugin/Mac/x86_64/libqrack_pinvoke.7.1.1.dylib.meta +++ b/Assets/Qrack/Plugin/Mac/x86_64/libqrack_pinvoke.7.1.1.dylib.meta @@ -11,6 +11,23 @@ PluginImporter: isExplicitlyReferenced: 0 validateReferences: 1 platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 0 + Exclude Linux64: 1 + Exclude OSXUniversal: 0 + Exclude Win: 1 + Exclude Win64: 1 + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: ARMv7 - first: Any: second: @@ -21,13 +38,33 @@ PluginImporter: second: enabled: 1 settings: + CPU: x86_64 DefaultValueInitialized: true + OS: OSX + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None - first: Standalone: OSXUniversal second: enabled: 1 settings: CPU: AnyCPU + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: x86_64 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Qrack/Plugin/iOS/libqrack_pinvoke.7.1.1.dylib.meta b/Assets/Qrack/Plugin/iOS/libqrack_pinvoke.7.1.1.dylib.meta index 475dcd4e..856a361b 100644 --- a/Assets/Qrack/Plugin/iOS/libqrack_pinvoke.7.1.1.dylib.meta +++ b/Assets/Qrack/Plugin/iOS/libqrack_pinvoke.7.1.1.dylib.meta @@ -11,6 +11,23 @@ PluginImporter: isExplicitlyReferenced: 0 validateReferences: 1 platformData: + - first: + : Any + second: + enabled: 0 + settings: + Exclude Android: 1 + Exclude Editor: 1 + Exclude Linux64: 1 + Exclude OSXUniversal: 1 + Exclude Win: 1 + Exclude Win64: 1 + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: ARMv7 - first: Any: second: @@ -19,15 +36,35 @@ PluginImporter: - first: Editor: Editor second: - enabled: 1 + enabled: 0 settings: + CPU: AnyCPU DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None - first: Standalone: OSXUniversal second: - enabled: 1 + enabled: 0 settings: CPU: AnyCPU + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Qrack/Qasm/TeleportAlice.cs b/Assets/Qrack/Qasm/TeleportAlice.cs index 8c657b6a..3c25a323 100644 --- a/Assets/Qrack/Qasm/TeleportAlice.cs +++ b/Assets/Qrack/Qasm/TeleportAlice.cs @@ -32,9 +32,8 @@ protected override void StartProgram() Action = (time) => { RelativisticObject ro = RelativisticObject; - ro.transform.rotation = Quaternion.identity; - ro.transform.eulerAngles = new Vector3((float)coords.inclination * Mathf.Rad2Deg, (float)coords.azimuth * Mathf.Rad2Deg, 0.0f); - ro.riw = qs.transform.rotation; + ro.transform.rotation = Quaternion.Euler(new Vector3((float)coords.inclination * Mathf.Rad2Deg, (float)coords.azimuth * Mathf.Rad2Deg, 0.0f)); + ro.riw = ro.transform.rotation; ro.localScale = new Vector3((float)coords.r, (float)coords.r, (float)coords.r); } }); @@ -43,7 +42,7 @@ protected override void StartProgram() ProgramInstructions.Add(new RealTimeQasmInstruction() { - DeltaTime = 0.1f, + DeltaTime = 0.5f, quantumProgramUpdate = (x, y) => { ClassicalBitRegisters[0] = QuantumSystem.M(0); diff --git a/Assets/Qrack/Qasm/TeleportBob.cs b/Assets/Qrack/Qasm/TeleportBob.cs index 818de16f..03f27f71 100644 --- a/Assets/Qrack/Qasm/TeleportBob.cs +++ b/Assets/Qrack/Qasm/TeleportBob.cs @@ -55,9 +55,8 @@ protected void StartTriggeredProgram() Action = (time) => { RelativisticObject ro = RelativisticObject; - ro.transform.rotation = Quaternion.identity; - ro.transform.eulerAngles = new Vector3((float)coords.inclination * Mathf.Rad2Deg, (float)coords.azimuth * Mathf.Rad2Deg, 0.0f); - ro.riw = qs.transform.rotation; + ro.transform.rotation = Quaternion.Euler(new Vector3((float)coords.inclination * Mathf.Rad2Deg, (float)coords.azimuth * Mathf.Rad2Deg, 0.0f)); + ro.riw = ro.transform.rotation; ro.localScale = new Vector3((float)coords.r, (float)coords.r, (float)coords.r); } }); diff --git a/Assets/Qrack/Scripts/QuantumManager.cs b/Assets/Qrack/Scripts/QuantumManager.cs index 557d3710..30a29cc8 100644 --- a/Assets/Qrack/Scripts/QuantumManager.cs +++ b/Assets/Qrack/Scripts/QuantumManager.cs @@ -22,9 +22,9 @@ public BlochSphereCoordinates(double px, double py, double pz) probY = py; probZ = pz; - double x = 2 * ((1.0 / 2.0) - probX); - double y = 2 * ((1.0 / 2.0) - probY); - double z = 2 * ((1.0 / 2.0) - probZ); + double x = 1.0 - 2 * probX; + double y = 1.0 - 2 * probY; + double z = 1.0 - 2 * probZ; r = Math.Sqrt(x * x + y * y + z * z); inclination = Math.Atan2(Math.Sqrt(x * x + y * y), z); @@ -381,9 +381,7 @@ public static BlochSphereCoordinates Prob3Axis(uint simId, uint target) H(simId, target); double probX = Prob(simId, target); S(simId, target); - H(simId, target); double probY = Prob(simId, target); - H(simId, target); AdjS(simId, target); H(simId, target); diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log deleted file mode 100644 index 6e76ebed..00000000 --- a/Logs/AssetImportWorker0.log +++ /dev/null @@ -1,564 +0,0 @@ -Using pre-set license -Built from '2020.3/staging' branch; Version is '2020.3.33f1 (915a7af8b0d5) revision 9525882'; Using compiler version '192528614'; Build Type 'Release' -OS: 'Windows 10 (10.0.19043) 64bit Core' Language: 'en' Physical Memory: 32530 MB -BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 - -COMMAND LINE ARGUMENTS: -C:\Program Files\Unity\Hub\Editor\2020.3.33f1\Editor\Unity.exe --adb2 --batchMode --noUpm --name -AssetImportWorker0 --projectPath -C:/Users/jerse/Documents/GitHub/OpenRelativity --logFile -Logs/AssetImportWorker0.log --srvPort -62919 -Successfully changed project path to: C:/Users/jerse/Documents/GitHub/OpenRelativity -C:/Users/jerse/Documents/GitHub/OpenRelativity -Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 20.73 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2020.3.33f1 (915a7af8b0d5) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path C:/Users/jerse/Documents/GitHub/OpenRelativity/Assets -GfxDevice: creating device client; threaded=0 -Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce RTX 3080 Laptop GPU (ID=0x24dc) - Vendor: - VRAM: 16201 MB - Driver: 31.0.15.1640 -Initialize mono -Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/Managed' -Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' -Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56688 -Begin MonoManager ReloadAssembly -Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001422 seconds. -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 17.12 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.436 seconds -Domain Reload Profiling: - ReloadAssembly (436ms) - BeginReloadAssembly (49ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - EndReloadAssembly (332ms) - LoadAssemblies (48ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (115ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (23ms) - SetupLoadedEditorAssemblies (117ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (17ms) - BeforeProcessingInitializeOnLoad (13ms) - ProcessInitializeOnLoadAttributes (63ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -Platform modules already initialized, skipping -Registering precompiled user dll's ... -Registered in 0.000674 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.24 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.643 seconds -Domain Reload Profiling: - ReloadAssembly (644ms) - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (14ms) - EndReloadAssembly (481ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (146ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (172ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (83ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds -Refreshing native plugins compatible for Editor in 0.26 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1075 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 69.8 MB. -System memory in use after: 69.8 MB. - -Unloading 34 unused Assets to reduce memory usage. Loaded Objects now: 1522. -Total: 2.229800 ms (FindLiveObjects: 0.091300 ms CreateObjectMapping: 0.026200 ms MarkObjects: 2.033400 ms DeleteObjects: 0.078400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - path: Assets/Qrack/Scripts/QuantumSystem.cs - artifactKey: Guid(da074e38f4b44a547a9cf840edebffca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Qrack/Scripts/QuantumSystem.cs using Guid(da074e38f4b44a547a9cf840edebffca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c31654a4a9a4966d9c6b774ca7afd00') in 0.044687 seconds -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 4.85 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 22 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 48.1 MB. -System memory in use after: 48.2 MB. - -Unloading 22 unused Assets to reduce memory usage. Loaded Objects now: 1522. -Total: 1.732800 ms (FindLiveObjects: 0.089900 ms CreateObjectMapping: 0.026100 ms MarkObjects: 1.591400 ms DeleteObjects: 0.024500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000670 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.26 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.644 seconds -Domain Reload Profiling: - ReloadAssembly (644ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - EndReloadAssembly (503ms) - LoadAssemblies (78ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (155ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (169ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (81ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.27 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.8 MB. -System memory in use after: 68.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1525. -Total: 1.852100 ms (FindLiveObjects: 0.085400 ms CreateObjectMapping: 0.029500 ms MarkObjects: 1.705200 ms DeleteObjects: 0.031300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000751 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.783 seconds -Domain Reload Profiling: - ReloadAssembly (783ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (17ms) - EndReloadAssembly (645ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (100ms) - ProcessInitializeOnLoadAttributes (108ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.30 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1528. -Total: 1.951800 ms (FindLiveObjects: 0.088500 ms CreateObjectMapping: 0.029500 ms MarkObjects: 1.800700 ms DeleteObjects: 0.032200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 306.325248 seconds. - path: Assets/Qrack/Qasm/TeleportAlice.cs - artifactKey: Guid(9db4d4724c65a9a47ab082e979256c4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Qrack/Qasm/TeleportAlice.cs using Guid(9db4d4724c65a9a47ab082e979256c4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1adcf908961e5e8598aca59af30a452c') in 0.011715 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000747 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.26 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.644 seconds -Domain Reload Profiling: - ReloadAssembly (644ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - EndReloadAssembly (507ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (151ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (177ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (86ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.28 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1531. -Total: 1.852900 ms (FindLiveObjects: 0.081400 ms CreateObjectMapping: 0.026600 ms MarkObjects: 1.715100 ms DeleteObjects: 0.029000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000616 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.25 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.610 seconds -Domain Reload Profiling: - ReloadAssembly (610ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - EndReloadAssembly (487ms) - LoadAssemblies (65ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (142ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (173ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (84ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.27 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1534. -Total: 1.737700 ms (FindLiveObjects: 0.084100 ms CreateObjectMapping: 0.026800 ms MarkObjects: 1.598300 ms DeleteObjects: 0.027700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000643 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.28 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.650 seconds -Domain Reload Profiling: - ReloadAssembly (651ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - EndReloadAssembly (514ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (154ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (180ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (87ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.28 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1537. -Total: 1.818400 ms (FindLiveObjects: 0.079400 ms CreateObjectMapping: 0.026500 ms MarkObjects: 1.682700 ms DeleteObjects: 0.029100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000658 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.708 seconds -Domain Reload Profiling: - ReloadAssembly (708ms) - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (16ms) - EndReloadAssembly (554ms) - LoadAssemblies (88ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (150ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (102ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.31 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1540. -Total: 1.981200 ms (FindLiveObjects: 0.089000 ms CreateObjectMapping: 0.029600 ms MarkObjects: 1.826500 ms DeleteObjects: 0.035200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.000898 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.28 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.673 seconds -Domain Reload Profiling: - ReloadAssembly (673ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (18ms) - EndReloadAssembly (527ms) - LoadAssemblies (76ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (162ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (178ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (87ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 0.29 ms, found 1 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 1062 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 68.9 MB. -System memory in use after: 69.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 1543. -Total: 1.822100 ms (FindLiveObjects: 0.082800 ms CreateObjectMapping: 0.028100 ms MarkObjects: 1.679700 ms DeleteObjects: 0.030900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log deleted file mode 100644 index 5f15d051..00000000 --- a/Logs/shadercompiler-AssetImportWorker0.log +++ /dev/null @@ -1,3 +0,0 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.33f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index cb2d4b77..e5344ea9 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -9,31 +9,31 @@ EditorUserSettings: value: 224247031146467e150f01321c2610231512162f3f6734352128093af4e92021b0e378fce9332b25 flags: 0 RecentlyUsedScenePath-1: - value: 224247031146467e150f01321c2610231512162f3f6728353a0f1832f6f5263df1a923e7ee2e26 + value: 224247031146467e150f01321c2610231512162f3f672d353f3b2220e9f93637faa923e7ee2e26 flags: 0 RecentlyUsedScenePath-2: - value: 224247031146467e150f01321c2610231512162f3f672b3f23260d3ceee57a2decee22f0 + value: 224247031146467e150f01321c2610231512162f3f6725382c3b1a36e6df2728ebe938e0e93d002f321bed331c701431fb1e10 flags: 0 RecentlyUsedScenePath-3: - value: 224247031146467e150f01321c2610231512162f3f672d353f3b2220e9f93637faa923e7ee2e26 + value: 224247031146467e150f01321c2610231512162f3f6725382c3b1a36e6df2733fbe539f1a92f31352d1b flags: 0 RecentlyUsedScenePath-4: - value: 224247031146467e150f01321c2610231512162f3f6725382c3b1a36e6df2728ebe938e0e93d002f321bed331c701431fb1e10 + value: 224247031146467e150f01321c2610231512162f3f67243c2c2a163bedec3107f1ec2febe8227129370bfb25 flags: 0 RecentlyUsedScenePath-5: - value: 224247031146467e150f01321c2610231512162f3f6725382c3b1a36e6df2733fbe539f1a92f31352d1b + value: 224247031146467e150f01321c2610231512162f3f67243c2c2a163bedec3107ebe922ecf533302e7717e1351027 flags: 0 RecentlyUsedScenePath-6: - value: 224247031146467e150f01321c2610231512162f3f67243c2c2a163bedec3107f1ec2febe8227129370bfb25 + value: 224247031146467e150f01321c2610231512162f3f6734352c252230edee272ce3e922faa92f31352d1b flags: 0 RecentlyUsedScenePath-7: - value: 224247031146467e150f01321c2610231512162f3f67243c2c2a163bedec3107ebe922ecf533302e7717e1351027 + value: 224247031146467e150f01321c2610231512162f3f672b3f23260d3ceee57a2decee22f0 flags: 0 RecentlyUsedScenePath-8: - value: 224247031146467e150f01321c2610231512162f3f673439232d1136f0c63139f6f224ecf4742a323016f6 + value: 224247031146467e150f01321c2610231512162f3f6728353a0f1832f6f5263df1a923e7ee2e26 flags: 0 RecentlyUsedScenePath-9: - value: 224247031146467e150f01321c2610231512162f3f6734352c252230edee272ce3e922faa92f31352d1b + value: 224247031146467e150f01321c2610231512162f3f673439232d1136f0c63139f6f224ecf4742a323016f6 flags: 0 vcSharedLogLevel: value: 0d5e400f0650