diff --git a/Chess Recode/.idea/.idea.Chess Recode/.idea/vcs.xml b/Chess Recode/.idea/.idea.Chess Recode/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/Chess Recode/.idea/.idea.Chess Recode/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Chess Recode/Assets/Scripts/Bishop.cs b/Chess Recode/Assets/Scripts/Bishop.cs index 369139c..f8ab666 100644 --- a/Chess Recode/Assets/Scripts/Bishop.cs +++ b/Chess Recode/Assets/Scripts/Bishop.cs @@ -4,8 +4,104 @@ using UnityEngine; public class Bishop : Character { + public static readonly Vector2[,] moves = + { + { + //up, right + new Vector2(1, 1), + new Vector2(2, 2), + new Vector2(3, 3), + new Vector2(4, 4), + new Vector2(5, 5), + new Vector2(6, 6), + new Vector2(7, 7), + new Vector2(8.5f, 8.5f), + }, + + { + //up, left + new Vector2(-1, 1), + new Vector2(-2, 2), + new Vector2(-3, 3), + new Vector2(-4, 4), + new Vector2(-5, 5), + new Vector2(-6, 6), + new Vector2(-7, 7), + new Vector2(-8.5f, 8.5f), + }, + + { + //down, right + new Vector2(1, -1), + new Vector2(2, -2), + new Vector2(3, -3), + new Vector2(4, -4), + new Vector2(5, -5), + new Vector2(6, -6), + new Vector2(7, -7), + new Vector2(8.5f, -8.5f), + }, + + { + //down, left + new Vector2(-1, -1), + new Vector2(-2, -2), + new Vector2(-3, -3), + new Vector2(-4, -4), + new Vector2(-5, -5), + new Vector2(-6, -6), + new Vector2(-7, -7), + new Vector2(-8.5f, -8.5f), + } + }; + + public override bool[,] GetValidMoves(Cell[,] cells, Game game) { - return null; + bool[,] result = new bool[8, 8]; + + for (int i = 0; i < 4; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 testPosition = transform.position + (Vector3)moves[i, j]; + Cell testCell = game.GetCellOnPosition(testPosition); + + if (testCell != null) + { + if (testCell.connected == null) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + else + { + if (testCell.connected.team != game.currentTeam) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + + j = 8; + } + } + } + } + + return result; } -} +} \ No newline at end of file diff --git a/Chess Recode/Assets/Scripts/Game.cs b/Chess Recode/Assets/Scripts/Game.cs index bf39bf4..3026df4 100644 --- a/Chess Recode/Assets/Scripts/Game.cs +++ b/Chess Recode/Assets/Scripts/Game.cs @@ -40,7 +40,7 @@ public class Game : MonoBehaviour Destroy(tempCell.connected.gameObject); } tempCell.connected = clickedCell.connected; - tempCell.connected.gameObject.transform.position = (tempCell.gameObject.transform.position); + tempCell.connected.gameObject.transform.position = (tempCell.gameObject.transform.position + Vector3.back); clickedCell.connected = null; DeColorAllCells(); diff --git a/Chess Recode/Assets/Scripts/King.cs b/Chess Recode/Assets/Scripts/King.cs index 840ca83..fdb5fac 100644 --- a/Chess Recode/Assets/Scripts/King.cs +++ b/Chess Recode/Assets/Scripts/King.cs @@ -4,8 +4,62 @@ using UnityEngine; public class King : Character { + public static readonly Vector2[] moves = + { + //up + new Vector2(0, 1), + //down + new Vector2(0, -1), + //right + new Vector2(1, 0), + //left + new Vector2(-1, 0), + //up, right + new Vector2(1, 1), + //up, left + new Vector2(-1, 1), + //down, right + new Vector2(1, -1), + //down, left + new Vector2(-1, -1) + }; + public override bool[,] GetValidMoves(Cell[,] cells, Game game) { - return null; + bool[,] result = new bool[8, 8]; + + foreach (Vector2 move in moves) + { + Vector3 testPosition = transform.position + (Vector3)move; + + Cell testCell = game.GetCellOnPosition(testPosition + Vector3.back); + + if (testCell != null) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + + if (testCell.connected == null) + { + result[x, y] = true; + } + else + { + Character testCharacter = testCell.connected; + if (testCharacter.team != game.currentTeam) + { + result[x, y] = true; + } + } + } + } + + return result; } } diff --git a/Chess Recode/Assets/Scripts/Knight.cs b/Chess Recode/Assets/Scripts/Knight.cs index d700811..7e091db 100644 --- a/Chess Recode/Assets/Scripts/Knight.cs +++ b/Chess Recode/Assets/Scripts/Knight.cs @@ -20,18 +20,18 @@ public class Knight : Character new Vector2(-2, 1), new Vector2(-2, -1), }; - + public override bool[,] GetValidMoves(Cell[,] cells, Game game) { bool[,] result = new bool[8, 8]; - + foreach (Vector2 move in moves) { Vector3 testPosition = transform.position + (Vector3)move; Cell testCell = game.GetCellOnPosition(testPosition + Vector3.back); - if(testCell != null) + if (testCell != null) { int x, y; @@ -40,25 +40,23 @@ public class Knight : Character x = int.Parse(nameX); y = int.Parse(nameY); - - if (IsPositionInGrid(x, y)) + + + if (testCell.connected == null) { - if (testCell.connected == null) + result[x, y] = true; + } + else + { + Character testCharacter = testCell.connected; + if (testCharacter.team != game.currentTeam) { result[x, y] = true; } - else - { - Character testCharacter = testCell.connected; - if (testCharacter.team != game.currentTeam) - { - result[x, y] = true; - } - } } } } return result; } -} +} \ No newline at end of file diff --git a/Chess Recode/Assets/Scripts/Queen.cs b/Chess Recode/Assets/Scripts/Queen.cs index 5652b40..d082169 100644 --- a/Chess Recode/Assets/Scripts/Queen.cs +++ b/Chess Recode/Assets/Scripts/Queen.cs @@ -4,8 +4,151 @@ using UnityEngine; public class Queen : Character { + public static readonly Vector2[,] moves = + { + { + //up + new Vector2(0, 1), + new Vector2(0, 2), + new Vector2(0, 3), + new Vector2(0, 4), + new Vector2(0, 5), + new Vector2(0, 6), + new Vector2(0, 7), + new Vector2(0, 8.5f), //.5 because of calculation error in game ^^ + }, + + { + //down + new Vector2(0, -1), + new Vector2(0, -2), + new Vector2(0, -3), + new Vector2(0, -4), + new Vector2(0, -5), + new Vector2(0, -6), + new Vector2(0, -7), + new Vector2(0, -8.5f), + }, + + { + //right + new Vector2(1, 0), + new Vector2(2, 0), + new Vector2(3, 0), + new Vector2(4, 0), + new Vector2(5, 0), + new Vector2(6, 0), + new Vector2(7, 0), + new Vector2(8.5f, 0) + }, + + { + //left + new Vector2(-1, 0), + new Vector2(-2, 0), + new Vector2(-3, 0), + new Vector2(-4, 0), + new Vector2(-5, 0), + new Vector2(-6, 0), + new Vector2(-7, 0), + new Vector2(-8.5f, 0) + }, + + { + //up, right + new Vector2(1, 1), + new Vector2(2, 2), + new Vector2(3, 3), + new Vector2(4, 4), + new Vector2(5, 5), + new Vector2(6, 6), + new Vector2(7, 7), + new Vector2(8.5f, 8.5f), + }, + + { + //up, left + new Vector2(-1, 1), + new Vector2(-2, 2), + new Vector2(-3, 3), + new Vector2(-4, 4), + new Vector2(-5, 5), + new Vector2(-6, 6), + new Vector2(-7, 7), + new Vector2(-8.5f, 8.5f), + }, + + { + //down, right + new Vector2(1, -1), + new Vector2(2, -2), + new Vector2(3, -3), + new Vector2(4, -4), + new Vector2(5, -5), + new Vector2(6, -6), + new Vector2(7, -7), + new Vector2(8.5f, -8.5f), + }, + + { + //down, left + new Vector2(-1, -1), + new Vector2(-2, -2), + new Vector2(-3, -3), + new Vector2(-4, -4), + new Vector2(-5, -5), + new Vector2(-6, -6), + new Vector2(-7, -7), + new Vector2(-8.5f, -8.5f), + } + }; + public override bool[,] GetValidMoves(Cell[,] cells, Game game) { - return null; + bool[,] result = new bool[8, 8]; + + for (int i = 0; i < 8; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 testPosition = transform.position + (Vector3)moves[i, j]; + Cell testCell = game.GetCellOnPosition(testPosition); + + if(testCell != null) + { + if (testCell.connected == null) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + else + { + if (testCell.connected.team != game.currentTeam) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + + j = 8; + } + } + } + } + + return result; } } diff --git a/Chess Recode/Assets/Scripts/Rook.cs b/Chess Recode/Assets/Scripts/Rook.cs index 6b816de..5f654f9 100644 --- a/Chess Recode/Assets/Scripts/Rook.cs +++ b/Chess Recode/Assets/Scripts/Rook.cs @@ -6,7 +6,6 @@ public class Rook : Character { private static readonly Vector2[,] moves = { - { //up new Vector2(0, 1), @@ -55,13 +54,53 @@ public class Rook : Character new Vector2(-8.5f, 0) } }; - + public override bool[,] GetValidMoves(Cell[,] cells, Game game) { bool[,] result = new bool[8, 8]; - - + + for (int i = 0; i < 4; i++) + { + for (int j = 0; j < 8; j++) + { + Vector3 testPosition = transform.position + (Vector3)moves[i, j]; + Cell testCell = game.GetCellOnPosition(testPosition); + + if(testCell != null) + { + if (testCell.connected == null) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + else + { + if (testCell.connected.team != game.currentTeam) + { + int x, y; + + string nameX = testCell.gameObject.name.Substring(5, 1); + string nameY = testCell.gameObject.name.Substring(7, 1); + + x = int.Parse(nameX); + y = int.Parse(nameY); + + result[x, y] = true; + } + + j = 8; + } + } + } + } return result; } -} +} \ No newline at end of file diff --git a/Chess Recode/Logs/AssetImportWorker0-prev.log b/Chess Recode/Logs/AssetImportWorker0-prev.log index b467428..c864509 100644 --- a/Chess Recode/Logs/AssetImportWorker0-prev.log +++ b/Chess Recode/Logs/AssetImportWorker0-prev.log @@ -11,19 +11,19 @@ C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -F:/Gihub Projects/Chess Unity/Chess-Unity/Chess +C:/Users/braus/Desktop/Chess Recode -logFile Logs/AssetImportWorker0.log -srvPort -52736 -Successfully changed project path to: F:/Gihub Projects/Chess Unity/Chess-Unity/Chess -F:/Gihub Projects/Chess Unity/Chess-Unity/Chess +52476 +Successfully changed project path to: C:/Users/braus/Desktop/Chess Recode +C:/Users/braus/Desktop/Chess Recode Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 114.46 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 128.82 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.1.13f1 (a03098edbbe0) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path F:/Gihub Projects/Chess Unity/Chess-Unity/Chess/Assets +[Subsystems] Discovering subsystems at path C:/Users/braus/Desktop/Chess Recode/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -35,76 +35,76 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56624 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56452 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.001648 seconds. +Registered in 0.002860 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 121.32 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 122.51 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.186 seconds +- Completed reload, in 1.933 seconds Domain Reload Profiling: - ReloadAssembly (2186ms) - BeginReloadAssembly (244ms) + ReloadAssembly (1933ms) + BeginReloadAssembly (76ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (549ms) - LoadAssemblies (242ms) + EndReloadAssembly (582ms) + LoadAssemblies (74ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) + SetupTypeCache (192ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (282ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (286ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (121ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (120ms) - ProcessInitializeOnLoadMethodAttributes (32ms) + RefreshPlugins (123ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (121ms) + ProcessInitializeOnLoadMethodAttributes (34ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.004302 seconds. +Registered in 0.005727 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 111.59 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 119.87 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.629 seconds +- Completed reload, in 1.448 seconds Domain Reload Profiling: - ReloadAssembly (1629ms) - BeginReloadAssembly (162ms) + ReloadAssembly (1449ms) + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (1390ms) - LoadAssemblies (118ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (1217ms) + LoadAssemblies (101ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (464ms) + SetupTypeCache (408ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (73ms) - SetupLoadedEditorAssemblies (605ms) + SetupLoadedEditorAssemblies (519ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (112ms) - BeforeProcessingInitializeOnLoad (100ms) - ProcessInitializeOnLoadAttributes (365ms) - ProcessInitializeOnLoadMethodAttributes (19ms) - AfterProcessingInitializeOnLoad (5ms) + RefreshPlugins (120ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (7ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) @@ -112,14 +112,14 @@ Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3673 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.4 MB. +System memory in use before: 136.3 MB. System memory in use after: 136.4 MB. Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 4117. -Total: 2.969500 ms (FindLiveObjects: 0.284900 ms CreateObjectMapping: 0.179800 ms MarkObjects: 2.334700 ms DeleteObjects: 0.168900 ms) +Total: 2.982900 ms (FindLiveObjects: 0.267800 ms CreateObjectMapping: 0.194100 ms MarkObjects: 2.389400 ms DeleteObjects: 0.130500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -133,477 +133,327 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. + path: Assets/Scripts/Cell.cs + artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9531837c0e69d1fc32af4f7d1fdff8e3') in 0.065046 seconds +======================================================================== +Received Import Request. + Time since last request: 8.416678 seconds. + path: Assets/Scripts/CharacterData.cs + artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6c7d05e00926135d02db635738ee597') in 0.008433 seconds +======================================================================== +Received Import Request. + Time since last request: 12.118747 seconds. path: Assets/Scripts/Game.cs artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c03ec7fa6dd929de4fc2f9d3bdde18b7') in 0.065552 seconds +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a12c77b9f1995ae839d1e7335355cd8') in 0.010855 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004116 seconds. +Registered in 0.006608 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.132 seconds -Domain Reload Profiling: - ReloadAssembly (1132ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (944ms) - LoadAssemblies (90ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (378ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (315ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (231ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.4 MB. -System memory in use after: 136.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4121. -Total: 3.023800 ms (FindLiveObjects: 0.254700 ms CreateObjectMapping: 0.166500 ms MarkObjects: 2.462000 ms DeleteObjects: 0.139700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005185 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.581 seconds -Domain Reload Profiling: - ReloadAssembly (1582ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (1384ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (704ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (363ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (262ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.5 MB. -System memory in use after: 136.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4125. -Total: 3.092600 ms (FindLiveObjects: 0.288000 ms CreateObjectMapping: 0.215800 ms MarkObjects: 2.480500 ms DeleteObjects: 0.106900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004822 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.145 seconds -Domain Reload Profiling: - ReloadAssembly (1146ms) - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (951ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (369ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (318ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.5 MB. -System memory in use after: 136.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4129. -Total: 3.094300 ms (FindLiveObjects: 0.253600 ms CreateObjectMapping: 0.171900 ms MarkObjects: 2.526000 ms DeleteObjects: 0.141800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007151 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.605 seconds -Domain Reload Profiling: - ReloadAssembly (1605ms) - BeginReloadAssembly (279ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (141ms) - EndReloadAssembly (1181ms) - LoadAssemblies (135ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (514ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (351ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (258ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4133. -Total: 3.643600 ms (FindLiveObjects: 0.317500 ms CreateObjectMapping: 0.218300 ms MarkObjects: 2.985100 ms DeleteObjects: 0.121400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004326 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly - Completed reload, in 1.302 seconds Domain Reload Profiling: ReloadAssembly (1302ms) - BeginReloadAssembly (172ms) + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (63ms) - EndReloadAssembly (1062ms) - LoadAssemblies (118ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1098ms) + LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (398ms) + SetupTypeCache (456ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (369ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.3 MB. +System memory in use after: 136.4 MB. + +Unloading 29 unused Assets to reduce memory usage. Loaded Objects now: 4117. +Total: 7.962400 ms (FindLiveObjects: 0.423200 ms CreateObjectMapping: 0.634600 ms MarkObjects: 6.797500 ms DeleteObjects: 0.105900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 20.722440 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5030a6167347696a569aaafe72bdf0dd') in 0.022838 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005801 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.010 seconds +Domain Reload Profiling: + ReloadAssembly (2010ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1737ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (535ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (385ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (37ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3668 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.3 MB. +System memory in use after: 136.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4122. +Total: 4.022400 ms (FindLiveObjects: 0.328700 ms CreateObjectMapping: 0.312600 ms MarkObjects: 3.273300 ms DeleteObjects: 0.106400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 180.447612 seconds. + path: Assets/Scripts/Character.cs + artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6157f3b3e4a399c3ecd25ba085d68c01') in 0.070117 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006129 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.248 seconds +Domain Reload Profiling: + ReloadAssembly (1248ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1053ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (379ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (280ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (247ms) ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3668 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.4 MB. +System memory in use after: 136.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4126. +Total: 3.378500 ms (FindLiveObjects: 0.324700 ms CreateObjectMapping: 0.252700 ms MarkObjects: 2.688500 ms DeleteObjects: 0.111100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 74.102200 seconds. + path: Assets/Scripts/Cell.cs + artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b6bf045ae41118c02bd2cbab501b24') in 0.064522 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006686 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 3.353 seconds +Domain Reload Profiling: + ReloadAssembly (3353ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (3056ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (519ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (884ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (350ms) + ProcessInitializeOnLoadAttributes (498ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3669 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.4 MB. +System memory in use after: 136.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4131. +Total: 3.493500 ms (FindLiveObjects: 0.321000 ms CreateObjectMapping: 0.238200 ms MarkObjects: 2.778600 ms DeleteObjects: 0.153900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.041425 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4137. -Total: 6.340200 ms (FindLiveObjects: 0.295300 ms CreateObjectMapping: 0.253600 ms MarkObjects: 5.668000 ms DeleteObjects: 0.121400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005034 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.332 seconds +- Completed reload, in 1.185 seconds Domain Reload Profiling: - ReloadAssembly (1332ms) - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1158ms) - LoadAssemblies (89ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (463ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (370ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (281ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4141. -Total: 3.464500 ms (FindLiveObjects: 0.346700 ms CreateObjectMapping: 0.183900 ms MarkObjects: 2.760500 ms DeleteObjects: 0.172500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004671 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.231 seconds -Domain Reload Profiling: - ReloadAssembly (1231ms) - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1037ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (412ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (329ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4145. -Total: 6.766900 ms (FindLiveObjects: 0.857200 ms CreateObjectMapping: 0.659000 ms MarkObjects: 5.139000 ms DeleteObjects: 0.109600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005079 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.277 seconds -Domain Reload Profiling: - ReloadAssembly (1277ms) - BeginReloadAssembly (127ms) + ReloadAssembly (1186ms) + BeginReloadAssembly (124ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (39ms) - EndReloadAssembly (1087ms) - LoadAssemblies (90ms) + EndReloadAssembly (1000ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (372ms) + SetupTypeCache (385ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (376ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (326ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (285ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (240ms) ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. +Unloading 3669 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.5 MB. +System memory in use after: 136.6 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4149. -Total: 3.045700 ms (FindLiveObjects: 0.260400 ms CreateObjectMapping: 0.171700 ms MarkObjects: 2.492100 ms DeleteObjects: 0.120600 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4135. +Total: 3.424200 ms (FindLiveObjects: 0.265500 ms CreateObjectMapping: 0.176900 ms MarkObjects: 2.835800 ms DeleteObjects: 0.144900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -617,53 +467,479 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 39.100791 seconds. + path: Assets/Graphics/BlackField.png + artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17a7b5c9d58d2dd8dec80870c41c0131') in 0.140288 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000306 seconds. + path: Assets/Graphics/BlackField.prefab + artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14c0d1bbf872f7e9286ca33bb99ec5bb') in 0.077872 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000277 seconds. + path: Assets/Graphics/WhiteField.prefab + artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a353b8e7c97e9a19f83e0609a27cf2f') in 0.022800 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000365 seconds. + path: Assets/Graphics/WhiteField.png + artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4033d17f2028e5d5dff2a4e8a502c90c') in 0.021647 seconds +======================================================================== +Received Import Request. + Time since last request: 22.897689 seconds. + path: Assets/Scripts/Rook.cs + artifactKey: Guid(e472b40b9823e414690354398c441ee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Rook.cs using Guid(e472b40b9823e414690354398c441ee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c50e69256395c4b1e0bc0b5627a63d8') in 0.018961 seconds +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004116 seconds. +Registered in 0.005532 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.271 seconds +Domain Reload Profiling: + ReloadAssembly (1272ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1086ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (416ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3672 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.6 MB. +System memory in use after: 141.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4180. +Total: 3.187400 ms (FindLiveObjects: 0.337000 ms CreateObjectMapping: 0.162300 ms MarkObjects: 2.525200 ms DeleteObjects: 0.161900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 8.211132 seconds. + path: Assets/Scripts/Kni.cs + artifactKey: Guid(39bc392329a01984b86cf500662c0620) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Kni.cs using Guid(39bc392329a01984b86cf500662c0620) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f8dd5bb00797553e4bd27398418a6a9') in 0.013691 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005348 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.213 seconds +Domain Reload Profiling: + ReloadAssembly (1214ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1023ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (384ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3670 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.5 MB. +System memory in use after: 141.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4184. +Total: 3.269500 ms (FindLiveObjects: 0.267600 ms CreateObjectMapping: 0.191100 ms MarkObjects: 2.662500 ms DeleteObjects: 0.147300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 15.010865 seconds. + path: Assets/Scripts/Knight.cs + artifactKey: Guid(413f30f504354374eac5ff0f4a42653d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Knight.cs using Guid(413f30f504354374eac5ff0f4a42653d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '985f7f15c37e9d2363a3b22c884343cf') in 0.021778 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005623 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.247 seconds +- Completed reload, in 1.226 seconds Domain Reload Profiling: - ReloadAssembly (1248ms) + ReloadAssembly (1226ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1027ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.01 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.5 MB. +System memory in use after: 141.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4189. +Total: 3.606500 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.207000 ms MarkObjects: 2.996100 ms DeleteObjects: 0.109300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 11.857018 seconds. + path: Assets/Scripts/Bishop.cs + artifactKey: Guid(843bca5b9b65c744b8f87208f3ce7aef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Bishop.cs using Guid(843bca5b9b65c744b8f87208f3ce7aef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf7a675f70336624b448e06e5d8f94ac') in 0.013482 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005230 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.205 seconds +Domain Reload Profiling: + ReloadAssembly (1205ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1018ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3672 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.6 MB. +System memory in use after: 141.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4194. +Total: 2.969600 ms (FindLiveObjects: 0.273600 ms CreateObjectMapping: 0.172000 ms MarkObjects: 2.416100 ms DeleteObjects: 0.106800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 16.923356 seconds. + path: Assets/Scripts/Queen.cs + artifactKey: Guid(4ecf79ff7b31c234f89070f40365082e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Queen.cs using Guid(4ecf79ff7b31c234f89070f40365082e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f091e14425affacda6a5b34d8f7ff3a') in 0.020258 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005406 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.190 seconds +Domain Reload Profiling: + ReloadAssembly (1191ms) + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1014ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3673 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.6 MB. +System memory in use after: 141.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4199. +Total: 2.852700 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.181600 ms MarkObjects: 2.291900 ms DeleteObjects: 0.109500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 9.441218 seconds. + path: Assets/Scripts/King.cs + artifactKey: Guid(9fd968408c0465c4bb0d7960a1be6a9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/King.cs using Guid(9fd968408c0465c4bb0d7960a1be6a9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48ddeece1e7b59c99b88d1a30ed936af') in 0.017020 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005416 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.227 seconds +Domain Reload Profiling: + ReloadAssembly (1227ms) BeginReloadAssembly (125ms) ExecutionOrderSort (0ms) DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (39ms) - EndReloadAssembly (1063ms) - LoadAssemblies (91ms) + EndReloadAssembly (1039ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (368ms) + SetupTypeCache (373ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (380ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (332ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (289ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (241ms) ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 8.37 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3674 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.6 MB. +System memory in use after: 141.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4204. +Total: 8.641900 ms (FindLiveObjects: 0.671700 ms CreateObjectMapping: 0.896300 ms MarkObjects: 6.962100 ms DeleteObjects: 0.110300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 10.581538 seconds. + path: Assets/Scripts/Pawn.cs + artifactKey: Guid(451b5186406195f4c87dd2a0934390db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Pawn.cs using Guid(451b5186406195f4c87dd2a0934390db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75ff8f24f6018c1174984cd38665fed6') in 0.022491 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005357 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.217 seconds +Domain Reload Profiling: + ReloadAssembly (1218ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1034ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (15ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. +Unloading 3675 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4153. -Total: 4.461600 ms (FindLiveObjects: 0.382600 ms CreateObjectMapping: 0.346500 ms MarkObjects: 3.555100 ms DeleteObjects: 0.175900 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4209. +Total: 2.813700 ms (FindLiveObjects: 0.297300 ms CreateObjectMapping: 0.182500 ms MarkObjects: 2.234700 ms DeleteObjects: 0.098300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -679,51 +955,6423 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004205 seconds. +Registered in 0.005388 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.180 seconds +- Completed reload, in 1.257 seconds Domain Reload Profiling: - ReloadAssembly (1180ms) - BeginReloadAssembly (109ms) + ReloadAssembly (1257ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1072ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3675 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4213. +Total: 3.117300 ms (FindLiveObjects: 0.260100 ms CreateObjectMapping: 0.167900 ms MarkObjects: 2.581900 ms DeleteObjects: 0.106600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 247.684663 seconds. + path: Assets/Scripts/Game.cs + artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c572e961b1b3442c2d449aac044ddae5') in 0.015509 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005619 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.258 seconds +Domain Reload Profiling: + ReloadAssembly (1259ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1067ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (348ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (262ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.64 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4218. +Total: 23.487400 ms (FindLiveObjects: 0.803900 ms CreateObjectMapping: 18.089200 ms MarkObjects: 4.386100 ms DeleteObjects: 0.206600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 16.801968 seconds. + path: Assets/Scripts/Game.cs + artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7d3ce4cd79a3539d212f3d22906f5da') in 0.178622 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005346 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.204 seconds +Domain Reload Profiling: + ReloadAssembly (1205ms) + BeginReloadAssembly (120ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - EndReloadAssembly (1010ms) + EndReloadAssembly (1011ms) LoadAssemblies (90ms) RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4222. +Total: 3.528500 ms (FindLiveObjects: 0.247900 ms CreateObjectMapping: 0.339200 ms MarkObjects: 2.793900 ms DeleteObjects: 0.146300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005595 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.286 seconds +Domain Reload Profiling: + ReloadAssembly (1286ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1081ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (424ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4226. +Total: 4.062900 ms (FindLiveObjects: 0.255000 ms CreateObjectMapping: 0.159500 ms MarkObjects: 3.449400 ms DeleteObjects: 0.197700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005419 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.185 seconds +Domain Reload Profiling: + ReloadAssembly (1186ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1004ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4230. +Total: 3.303800 ms (FindLiveObjects: 0.258100 ms CreateObjectMapping: 0.160200 ms MarkObjects: 2.740200 ms DeleteObjects: 0.144500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015857 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.650 seconds +Domain Reload Profiling: + ReloadAssembly (1650ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1392ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (470ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (443ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (331ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4234. +Total: 3.834700 ms (FindLiveObjects: 0.320700 ms CreateObjectMapping: 0.158700 ms MarkObjects: 3.206600 ms DeleteObjects: 0.147400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014437 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.458 seconds +Domain Reload Profiling: + ReloadAssembly (1458ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1202ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (401ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (336ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.7 MB. +System memory in use after: 141.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4238. +Total: 3.144400 ms (FindLiveObjects: 0.325400 ms CreateObjectMapping: 0.210700 ms MarkObjects: 2.486300 ms DeleteObjects: 0.120900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005569 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.530 seconds +Domain Reload Profiling: + ReloadAssembly (1530ms) + BeginReloadAssembly (245ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (117ms) + EndReloadAssembly (1223ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (405ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (405ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (311ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4242. +Total: 3.474900 ms (FindLiveObjects: 0.260800 ms CreateObjectMapping: 0.166000 ms MarkObjects: 2.904000 ms DeleteObjects: 0.143300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014518 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.459 seconds +Domain Reload Profiling: + ReloadAssembly (1460ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1262ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (479ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4246. +Total: 3.045600 ms (FindLiveObjects: 0.417100 ms CreateObjectMapping: 0.246400 ms MarkObjects: 2.256200 ms DeleteObjects: 0.125100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005822 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.334 seconds +Domain Reload Profiling: + ReloadAssembly (1335ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1134ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (397ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4250. +Total: 2.764000 ms (FindLiveObjects: 0.282500 ms CreateObjectMapping: 0.172300 ms MarkObjects: 2.212600 ms DeleteObjects: 0.095800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005604 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.494 seconds +Domain Reload Profiling: + ReloadAssembly (1494ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1273ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (477ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (348ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4254. +Total: 3.334300 ms (FindLiveObjects: 0.269900 ms CreateObjectMapping: 0.170500 ms MarkObjects: 2.752300 ms DeleteObjects: 0.140300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005511 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.303 seconds +Domain Reload Profiling: + ReloadAssembly (1304ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1125ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4258. +Total: 3.558000 ms (FindLiveObjects: 0.356500 ms CreateObjectMapping: 0.198000 ms MarkObjects: 2.866400 ms DeleteObjects: 0.136200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006762 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.564 seconds +Domain Reload Profiling: + ReloadAssembly (1565ms) + BeginReloadAssembly (311ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (25ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (208ms) + EndReloadAssembly (1186ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (399ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (304ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.87 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4262. +Total: 3.720000 ms (FindLiveObjects: 0.543100 ms CreateObjectMapping: 0.325000 ms MarkObjects: 2.738000 ms DeleteObjects: 0.112700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005495 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.452 seconds +Domain Reload Profiling: + ReloadAssembly (1452ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1270ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (430ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (405ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (315ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4266. +Total: 3.600700 ms (FindLiveObjects: 0.271100 ms CreateObjectMapping: 0.265400 ms MarkObjects: 2.920000 ms DeleteObjects: 0.143300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005289 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.369 seconds +Domain Reload Profiling: + ReloadAssembly (1370ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1186ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (399ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (353ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.8 MB. +System memory in use after: 141.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4270. +Total: 3.165000 ms (FindLiveObjects: 0.384400 ms CreateObjectMapping: 0.200500 ms MarkObjects: 2.431000 ms DeleteObjects: 0.148200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005680 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.504 seconds +Domain Reload Profiling: + ReloadAssembly (1504ms) + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1314ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (472ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (409ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (296ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4274. +Total: 3.605700 ms (FindLiveObjects: 0.571000 ms CreateObjectMapping: 0.318500 ms MarkObjects: 2.600800 ms DeleteObjects: 0.114100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005228 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.410 seconds +Domain Reload Profiling: + ReloadAssembly (1410ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1204ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4278. +Total: 3.817400 ms (FindLiveObjects: 0.317600 ms CreateObjectMapping: 0.220300 ms MarkObjects: 3.098400 ms DeleteObjects: 0.179900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005576 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.660 seconds +Domain Reload Profiling: + ReloadAssembly (1660ms) + BeginReloadAssembly (320ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (216ms) + EndReloadAssembly (1275ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (407ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (315ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4282. +Total: 3.123100 ms (FindLiveObjects: 0.253000 ms CreateObjectMapping: 0.150200 ms MarkObjects: 2.563700 ms DeleteObjects: 0.155200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005904 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.482 seconds +Domain Reload Profiling: + ReloadAssembly (1482ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1252ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (378ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (339ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4286. +Total: 2.970900 ms (FindLiveObjects: 0.274100 ms CreateObjectMapping: 0.207100 ms MarkObjects: 2.395700 ms DeleteObjects: 0.093200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006850 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.498 seconds +Domain Reload Profiling: + ReloadAssembly (1498ms) + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1282ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (408ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4290. +Total: 3.643300 ms (FindLiveObjects: 0.289300 ms CreateObjectMapping: 0.174000 ms MarkObjects: 3.038100 ms DeleteObjects: 0.140900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006100 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.418 seconds +Domain Reload Profiling: + ReloadAssembly (1419ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1208ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (444ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4294. +Total: 3.465300 ms (FindLiveObjects: 0.270600 ms CreateObjectMapping: 0.308700 ms MarkObjects: 2.742600 ms DeleteObjects: 0.142400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006192 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.649 seconds +Domain Reload Profiling: + ReloadAssembly (1649ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1444ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (409ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (434ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (330ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4298. +Total: 3.597000 ms (FindLiveObjects: 0.389700 ms CreateObjectMapping: 0.254500 ms MarkObjects: 2.846000 ms DeleteObjects: 0.105700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005883 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.398 seconds +Domain Reload Profiling: + ReloadAssembly (1399ms) + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1200ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4302. +Total: 3.081000 ms (FindLiveObjects: 0.350900 ms CreateObjectMapping: 0.180200 ms MarkObjects: 2.411700 ms DeleteObjects: 0.137400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006614 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.542 seconds +Domain Reload Profiling: + ReloadAssembly (1542ms) + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1300ms) + LoadAssemblies (182ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (437ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4306. +Total: 3.463800 ms (FindLiveObjects: 0.284800 ms CreateObjectMapping: 0.191600 ms MarkObjects: 2.835700 ms DeleteObjects: 0.151000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006337 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.532 seconds +Domain Reload Profiling: + ReloadAssembly (1532ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1344ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4310. +Total: 3.540700 ms (FindLiveObjects: 0.360300 ms CreateObjectMapping: 0.257200 ms MarkObjects: 2.708100 ms DeleteObjects: 0.214100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006471 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.295 seconds +Domain Reload Profiling: + ReloadAssembly (2296ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1978ms) + LoadAssemblies (467ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (590ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (464ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (341ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4314. +Total: 3.991400 ms (FindLiveObjects: 0.493900 ms CreateObjectMapping: 0.273600 ms MarkObjects: 3.106400 ms DeleteObjects: 0.116200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005763 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.404 seconds +Domain Reload Profiling: + ReloadAssembly (1404ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1215ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.9 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4318. +Total: 4.913000 ms (FindLiveObjects: 0.275500 ms CreateObjectMapping: 0.184200 ms MarkObjects: 4.314700 ms DeleteObjects: 0.137200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005318 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.529 seconds +Domain Reload Profiling: + ReloadAssembly (1529ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1314ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (494ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4322. +Total: 3.759000 ms (FindLiveObjects: 0.279500 ms CreateObjectMapping: 0.158300 ms MarkObjects: 3.070300 ms DeleteObjects: 0.249900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005449 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.399 seconds +Domain Reload Profiling: + ReloadAssembly (1400ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1207ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4326. +Total: 3.471800 ms (FindLiveObjects: 0.300200 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.859200 ms DeleteObjects: 0.140400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006144 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.605 seconds +Domain Reload Profiling: + ReloadAssembly (1605ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1339ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (379ms) ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (336ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4330. +Total: 3.480700 ms (FindLiveObjects: 0.308200 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.877200 ms DeleteObjects: 0.122900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006630 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.489 seconds +Domain Reload Profiling: + ReloadAssembly (1490ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1300ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4334. +Total: 3.767100 ms (FindLiveObjects: 0.279400 ms CreateObjectMapping: 0.179200 ms MarkObjects: 3.172000 ms DeleteObjects: 0.135200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005468 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.57 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.867 seconds +Domain Reload Profiling: + ReloadAssembly (1868ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1424ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (439ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (396ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (293ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4338. +Total: 3.888400 ms (FindLiveObjects: 0.279600 ms CreateObjectMapping: 0.210600 ms MarkObjects: 3.259400 ms DeleteObjects: 0.137800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007727 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.504 seconds +Domain Reload Profiling: + ReloadAssembly (1504ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1314ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (454ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (379ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.0 MB. +System memory in use after: 142.1 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4342. +Total: 3.324200 ms (FindLiveObjects: 0.268100 ms CreateObjectMapping: 0.163600 ms MarkObjects: 2.748800 ms DeleteObjects: 0.142800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010977 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.574 seconds +Domain Reload Profiling: + ReloadAssembly (1575ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1355ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (476ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4346. +Total: 3.175500 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.163600 ms MarkObjects: 2.596500 ms DeleteObjects: 0.129100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006156 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.842 seconds +Domain Reload Profiling: + ReloadAssembly (1843ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1645ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (455ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (445ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (295ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4350. +Total: 3.051800 ms (FindLiveObjects: 0.277100 ms CreateObjectMapping: 0.177800 ms MarkObjects: 2.483400 ms DeleteObjects: 0.112500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005831 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.422 seconds +Domain Reload Profiling: + ReloadAssembly (1422ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1232ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (359ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.00 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4354. +Total: 3.332500 ms (FindLiveObjects: 0.277300 ms CreateObjectMapping: 0.169900 ms MarkObjects: 2.763300 ms DeleteObjects: 0.120800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008877 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.619 seconds +Domain Reload Profiling: + ReloadAssembly (1619ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1440ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (514ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4358. +Total: 3.066500 ms (FindLiveObjects: 0.293000 ms CreateObjectMapping: 0.190600 ms MarkObjects: 2.472500 ms DeleteObjects: 0.109000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005469 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.471 seconds +Domain Reload Profiling: + ReloadAssembly (1471ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1274ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.2 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4362. +Total: 3.580300 ms (FindLiveObjects: 0.466400 ms CreateObjectMapping: 0.189000 ms MarkObjects: 2.779200 ms DeleteObjects: 0.144800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005925 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.597 seconds +Domain Reload Profiling: + ReloadAssembly (1598ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1397ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (381ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.1 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4366. +Total: 3.753700 ms (FindLiveObjects: 0.314200 ms CreateObjectMapping: 0.206600 ms MarkObjects: 3.125600 ms DeleteObjects: 0.106200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005447 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.605 seconds +Domain Reload Profiling: + ReloadAssembly (2605ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (2328ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (832ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (838ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (190ms) + ProcessInitializeOnLoadAttributes (624ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (33ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.03 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4370. +Total: 2.725600 ms (FindLiveObjects: 0.280100 ms CreateObjectMapping: 0.178700 ms MarkObjects: 2.169000 ms DeleteObjects: 0.096700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005294 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.554 seconds +Domain Reload Profiling: + ReloadAssembly (1554ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1369ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (448ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (306ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4374. +Total: 3.192100 ms (FindLiveObjects: 0.262900 ms CreateObjectMapping: 0.151800 ms MarkObjects: 2.645200 ms DeleteObjects: 0.131200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007234 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.813 seconds +Domain Reload Profiling: + ReloadAssembly (1813ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1601ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (491ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (474ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (164ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4378. +Total: 3.343300 ms (FindLiveObjects: 0.291900 ms CreateObjectMapping: 0.173300 ms MarkObjects: 2.765400 ms DeleteObjects: 0.111800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005897 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.737 seconds +Domain Reload Profiling: + ReloadAssembly (1737ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1549ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (404ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4382. +Total: 3.688500 ms (FindLiveObjects: 0.478900 ms CreateObjectMapping: 0.212000 ms MarkObjects: 2.852500 ms DeleteObjects: 0.144100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005592 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.023 seconds +Domain Reload Profiling: + ReloadAssembly (2024ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1831ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (732ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (452ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (331ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4386. +Total: 2.995500 ms (FindLiveObjects: 0.289700 ms CreateObjectMapping: 0.180100 ms MarkObjects: 2.414300 ms DeleteObjects: 0.110200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005731 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.607 seconds +Domain Reload Profiling: + ReloadAssembly (1608ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1421ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (388ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4390. +Total: 3.537500 ms (FindLiveObjects: 0.274100 ms CreateObjectMapping: 0.164000 ms MarkObjects: 2.964600 ms DeleteObjects: 0.133800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007923 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.619 seconds +Domain Reload Profiling: + ReloadAssembly (1619ms) + BeginReloadAssembly (230ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1327ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4394. +Total: 3.339100 ms (FindLiveObjects: 0.276200 ms CreateObjectMapping: 0.163400 ms MarkObjects: 2.758700 ms DeleteObjects: 0.140000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009012 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.735 seconds +Domain Reload Profiling: + ReloadAssembly (1736ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1534ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (515ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4398. +Total: 4.092100 ms (FindLiveObjects: 0.290000 ms CreateObjectMapping: 0.186900 ms MarkObjects: 3.491000 ms DeleteObjects: 0.123100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005183 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.629 seconds +Domain Reload Profiling: + ReloadAssembly (1630ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1451ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (401ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4402. +Total: 3.115400 ms (FindLiveObjects: 0.349100 ms CreateObjectMapping: 0.169700 ms MarkObjects: 2.453500 ms DeleteObjects: 0.142300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005271 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.979 seconds +Domain Reload Profiling: + ReloadAssembly (1980ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1761ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (400ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (305ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4406. +Total: 2.861900 ms (FindLiveObjects: 0.288600 ms CreateObjectMapping: 0.179900 ms MarkObjects: 2.250700 ms DeleteObjects: 0.141600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005398 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.769 seconds +Domain Reload Profiling: + ReloadAssembly (1769ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1587ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (358ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.2 MB. +System memory in use after: 142.3 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4410. +Total: 4.280400 ms (FindLiveObjects: 0.330600 ms CreateObjectMapping: 0.445000 ms MarkObjects: 3.362000 ms DeleteObjects: 0.141700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005533 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.524 seconds +Domain Reload Profiling: + ReloadAssembly (1524ms) + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1345ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4414. +Total: 3.686100 ms (FindLiveObjects: 0.364100 ms CreateObjectMapping: 0.239900 ms MarkObjects: 2.934300 ms DeleteObjects: 0.146500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005555 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.750 seconds +Domain Reload Profiling: + ReloadAssembly (1750ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1527ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4418. +Total: 4.608300 ms (FindLiveObjects: 0.398800 ms CreateObjectMapping: 0.288600 ms MarkObjects: 3.781900 ms DeleteObjects: 0.137600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005950 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.568 seconds +Domain Reload Profiling: + ReloadAssembly (1569ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1372ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (392ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4422. +Total: 2.967100 ms (FindLiveObjects: 0.274200 ms CreateObjectMapping: 0.161000 ms MarkObjects: 2.391500 ms DeleteObjects: 0.139500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005377 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.760 seconds +Domain Reload Profiling: + ReloadAssembly (1760ms) + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1544ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (444ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4426. +Total: 3.200300 ms (FindLiveObjects: 0.298300 ms CreateObjectMapping: 0.186600 ms MarkObjects: 2.576700 ms DeleteObjects: 0.137600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006246 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.502 seconds +Domain Reload Profiling: + ReloadAssembly (1502ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1308ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (385ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4430. +Total: 3.446600 ms (FindLiveObjects: 0.313000 ms CreateObjectMapping: 0.172900 ms MarkObjects: 2.693000 ms DeleteObjects: 0.266700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005875 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.650 seconds +Domain Reload Profiling: + ReloadAssembly (1651ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1457ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (450ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (345ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.4 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4434. +Total: 3.375300 ms (FindLiveObjects: 0.280800 ms CreateObjectMapping: 0.171300 ms MarkObjects: 2.783600 ms DeleteObjects: 0.138900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006722 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.563 seconds +Domain Reload Profiling: + ReloadAssembly (1564ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1390ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.3 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4438. +Total: 3.052500 ms (FindLiveObjects: 0.302500 ms CreateObjectMapping: 0.176100 ms MarkObjects: 2.424800 ms DeleteObjects: 0.148400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006186 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.755 seconds +Domain Reload Profiling: + ReloadAssembly (1755ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1524ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (483ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (408ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (311ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4442. +Total: 3.461400 ms (FindLiveObjects: 0.312800 ms CreateObjectMapping: 0.246000 ms MarkObjects: 2.788600 ms DeleteObjects: 0.113000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005953 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.731 seconds +Domain Reload Profiling: + ReloadAssembly (1731ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1517ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (490ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4446. +Total: 3.850400 ms (FindLiveObjects: 0.364300 ms CreateObjectMapping: 0.276300 ms MarkObjects: 3.076300 ms DeleteObjects: 0.132400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006815 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.704 seconds +Domain Reload Profiling: + ReloadAssembly (1704ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1430ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (384ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (286ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4450. +Total: 3.441600 ms (FindLiveObjects: 0.356500 ms CreateObjectMapping: 0.171800 ms MarkObjects: 2.762100 ms DeleteObjects: 0.150300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005735 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.765 seconds +Domain Reload Profiling: + ReloadAssembly (1765ms) + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1558ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (460ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (361ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4454. +Total: 2.735700 ms (FindLiveObjects: 0.296800 ms CreateObjectMapping: 0.182700 ms MarkObjects: 2.159100 ms DeleteObjects: 0.096300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005804 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.520 seconds +Domain Reload Profiling: + ReloadAssembly (1520ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1328ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4458. +Total: 3.571600 ms (FindLiveObjects: 0.397700 ms CreateObjectMapping: 0.329000 ms MarkObjects: 2.700700 ms DeleteObjects: 0.143200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005738 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.844 seconds +Domain Reload Profiling: + ReloadAssembly (1845ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1627ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (453ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (417ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (324ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4462. +Total: 3.159900 ms (FindLiveObjects: 0.310600 ms CreateObjectMapping: 0.189400 ms MarkObjects: 2.555100 ms DeleteObjects: 0.103800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006180 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.548 seconds +Domain Reload Profiling: + ReloadAssembly (1548ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1351ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4466. +Total: 3.554000 ms (FindLiveObjects: 0.305700 ms CreateObjectMapping: 0.212800 ms MarkObjects: 2.894200 ms DeleteObjects: 0.140400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005715 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.644 seconds +Domain Reload Profiling: + ReloadAssembly (1644ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1449ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (405ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4470. +Total: 3.511200 ms (FindLiveObjects: 0.284400 ms CreateObjectMapping: 0.179800 ms MarkObjects: 2.886300 ms DeleteObjects: 0.159800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005515 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.759 seconds +Domain Reload Profiling: + ReloadAssembly (1760ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1569ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (531ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4474. +Total: 3.914400 ms (FindLiveObjects: 0.296600 ms CreateObjectMapping: 0.295100 ms MarkObjects: 3.200500 ms DeleteObjects: 0.121000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005869 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.040 seconds +Domain Reload Profiling: + ReloadAssembly (2041ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1812ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (435ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (98ms) + ProcessInitializeOnLoadAttributes (314ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4478. +Total: 3.194600 ms (FindLiveObjects: 0.347400 ms CreateObjectMapping: 0.256000 ms MarkObjects: 2.480200 ms DeleteObjects: 0.109700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006038 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.760 seconds +Domain Reload Profiling: + ReloadAssembly (1760ms) + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1539ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (493ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (355ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.4 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4482. +Total: 4.004300 ms (FindLiveObjects: 0.422800 ms CreateObjectMapping: 0.528300 ms MarkObjects: 2.936600 ms DeleteObjects: 0.115500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005627 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.804 seconds +Domain Reload Profiling: + ReloadAssembly (1804ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1574ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (446ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (368ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4486. +Total: 3.263500 ms (FindLiveObjects: 0.286400 ms CreateObjectMapping: 0.174100 ms MarkObjects: 2.639300 ms DeleteObjects: 0.162900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007034 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.757 seconds +Domain Reload Profiling: + ReloadAssembly (1758ms) + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1548ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4490. +Total: 4.008500 ms (FindLiveObjects: 0.684100 ms CreateObjectMapping: 0.275600 ms MarkObjects: 2.912800 ms DeleteObjects: 0.135000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006393 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.791 seconds +Domain Reload Profiling: + ReloadAssembly (1791ms) + BeginReloadAssembly (206ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1512ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (411ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (409ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4494. +Total: 3.134400 ms (FindLiveObjects: 0.302800 ms CreateObjectMapping: 0.179600 ms MarkObjects: 2.543200 ms DeleteObjects: 0.107700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010083 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.87 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.557 seconds +Domain Reload Profiling: + ReloadAssembly (2558ms) + BeginReloadAssembly (337ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (37ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (100ms) + EndReloadAssembly (2121ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (584ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (368ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4498. +Total: 3.494400 ms (FindLiveObjects: 0.301100 ms CreateObjectMapping: 0.191000 ms MarkObjects: 2.851100 ms DeleteObjects: 0.150300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005619 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.570 seconds +Domain Reload Profiling: + ReloadAssembly (1571ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1386ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4502. +Total: 3.158000 ms (FindLiveObjects: 0.287300 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.571900 ms DeleteObjects: 0.126800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007467 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.584 seconds +Domain Reload Profiling: + ReloadAssembly (1584ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1388ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4506. +Total: 3.341200 ms (FindLiveObjects: 0.279000 ms CreateObjectMapping: 0.162300 ms MarkObjects: 2.757000 ms DeleteObjects: 0.142000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005747 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.789 seconds +Domain Reload Profiling: + ReloadAssembly (1790ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1590ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (473ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (273ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4510. +Total: 5.641300 ms (FindLiveObjects: 0.324500 ms CreateObjectMapping: 0.474900 ms MarkObjects: 4.732000 ms DeleteObjects: 0.108700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005353 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.844 seconds +Domain Reload Profiling: + ReloadAssembly (1845ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1653ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4514. +Total: 3.765000 ms (FindLiveObjects: 0.305900 ms CreateObjectMapping: 0.180500 ms MarkObjects: 3.026300 ms DeleteObjects: 0.237100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007795 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.745 seconds +Domain Reload Profiling: + ReloadAssembly (1745ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1503ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.92 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.6 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4518. +Total: 3.605500 ms (FindLiveObjects: 0.302600 ms CreateObjectMapping: 0.192000 ms MarkObjects: 2.948600 ms DeleteObjects: 0.161100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010557 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.913 seconds +Domain Reload Profiling: + ReloadAssembly (1913ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1722ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (428ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.93 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.5 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4522. +Total: 7.077900 ms (FindLiveObjects: 0.708700 ms CreateObjectMapping: 0.843400 ms MarkObjects: 5.374900 ms DeleteObjects: 0.133000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005537 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.953 seconds +Domain Reload Profiling: + ReloadAssembly (1953ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (79ms) + EndReloadAssembly (1708ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (381ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (279ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4526. +Total: 2.918600 ms (FindLiveObjects: 0.302000 ms CreateObjectMapping: 0.188300 ms MarkObjects: 2.322600 ms DeleteObjects: 0.104600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005711 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.915 seconds +Domain Reload Profiling: + ReloadAssembly (1915ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1721ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4530. +Total: 3.614000 ms (FindLiveObjects: 0.300100 ms CreateObjectMapping: 0.181400 ms MarkObjects: 3.003000 ms DeleteObjects: 0.128400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005257 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.257 seconds +Domain Reload Profiling: + ReloadAssembly (2257ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (2021ms) + LoadAssemblies (250ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (401ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (471ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (356ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (18ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4534. +Total: 2.977000 ms (FindLiveObjects: 0.344400 ms CreateObjectMapping: 0.241100 ms MarkObjects: 2.282100 ms DeleteObjects: 0.108500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007331 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.857 seconds +Domain Reload Profiling: + ReloadAssembly (1858ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1659ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (445ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (381ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4538. +Total: 4.037500 ms (FindLiveObjects: 0.335900 ms CreateObjectMapping: 0.187100 ms MarkObjects: 3.359300 ms DeleteObjects: 0.153800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005470 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.709 seconds +Domain Reload Profiling: + ReloadAssembly (1710ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1523ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4542. +Total: 3.592200 ms (FindLiveObjects: 0.371100 ms CreateObjectMapping: 0.258200 ms MarkObjects: 2.835600 ms DeleteObjects: 0.125800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005689 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.626 seconds +Domain Reload Profiling: + ReloadAssembly (1628ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1441ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4546. +Total: 3.512200 ms (FindLiveObjects: 0.360800 ms CreateObjectMapping: 0.224500 ms MarkObjects: 2.780200 ms DeleteObjects: 0.145800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008380 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.973 seconds +Domain Reload Profiling: + ReloadAssembly (1974ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1751ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (360ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.18 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4550. +Total: 4.428500 ms (FindLiveObjects: 0.311000 ms CreateObjectMapping: 0.202700 ms MarkObjects: 3.794400 ms DeleteObjects: 0.119000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006544 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.621 seconds +Domain Reload Profiling: + ReloadAssembly (1621ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1439ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4554. +Total: 3.513000 ms (FindLiveObjects: 0.302600 ms CreateObjectMapping: 0.170900 ms MarkObjects: 2.914400 ms DeleteObjects: 0.124100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005353 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.813 seconds +Domain Reload Profiling: + ReloadAssembly (1813ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1631ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (423ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (324ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.02 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4558. +Total: 20.096900 ms (FindLiveObjects: 0.280000 ms CreateObjectMapping: 0.158400 ms MarkObjects: 19.508600 ms DeleteObjects: 0.148300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005486 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.811 seconds +Domain Reload Profiling: + ReloadAssembly (1811ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1623ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (366ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (24ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4562. +Total: 3.078600 ms (FindLiveObjects: 0.287200 ms CreateObjectMapping: 0.164500 ms MarkObjects: 2.503200 ms DeleteObjects: 0.122800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005559 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.889 seconds +Domain Reload Profiling: + ReloadAssembly (1890ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1671ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (398ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (286ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 2.60 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4566. +Total: 3.504200 ms (FindLiveObjects: 0.325200 ms CreateObjectMapping: 0.334000 ms MarkObjects: 2.736400 ms DeleteObjects: 0.107300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006923 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.904 seconds +Domain Reload Profiling: + ReloadAssembly (1904ms) + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1675ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (461ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (362ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.6 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4570. +Total: 3.606000 ms (FindLiveObjects: 0.342400 ms CreateObjectMapping: 0.160200 ms MarkObjects: 2.969100 ms DeleteObjects: 0.133300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005645 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.670 seconds +Domain Reload Profiling: + ReloadAssembly (1671ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1479ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4574. +Total: 3.613500 ms (FindLiveObjects: 0.305400 ms CreateObjectMapping: 0.259700 ms MarkObjects: 2.903100 ms DeleteObjects: 0.144600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008383 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.928 seconds +Domain Reload Profiling: + ReloadAssembly (1928ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1736ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (559ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4578. +Total: 3.034300 ms (FindLiveObjects: 0.339900 ms CreateObjectMapping: 0.190500 ms MarkObjects: 2.375000 ms DeleteObjects: 0.127900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006010 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.028 seconds +Domain Reload Profiling: + ReloadAssembly (2029ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1831ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (497ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (136ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.95 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4582. +Total: 3.601100 ms (FindLiveObjects: 0.306500 ms CreateObjectMapping: 0.197400 ms MarkObjects: 2.987700 ms DeleteObjects: 0.108300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008727 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.899 seconds +Domain Reload Profiling: + ReloadAssembly (1899ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1701ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (483ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4586. +Total: 3.593600 ms (FindLiveObjects: 0.336800 ms CreateObjectMapping: 0.162900 ms MarkObjects: 2.949400 ms DeleteObjects: 0.143500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007379 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 3.86 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.459 seconds +Domain Reload Profiling: + ReloadAssembly (2459ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (2274ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (601ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (393ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4590. +Total: 19.292800 ms (FindLiveObjects: 0.452600 ms CreateObjectMapping: 4.048900 ms MarkObjects: 13.859700 ms DeleteObjects: 0.929700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005624 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.937 seconds +Domain Reload Profiling: + ReloadAssembly (1938ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1683ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (389ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4594. +Total: 3.682000 ms (FindLiveObjects: 0.410200 ms CreateObjectMapping: 0.292700 ms MarkObjects: 2.865500 ms DeleteObjects: 0.112500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005604 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.932 seconds +Domain Reload Profiling: + ReloadAssembly (1933ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1737ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (389ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (452ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (353ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4598. +Total: 3.442300 ms (FindLiveObjects: 0.311100 ms CreateObjectMapping: 0.185400 ms MarkObjects: 2.784400 ms DeleteObjects: 0.160700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005436 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.008 seconds +Domain Reload Profiling: + ReloadAssembly (2009ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1812ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (452ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (414ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (319ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4602. +Total: 3.304100 ms (FindLiveObjects: 0.326700 ms CreateObjectMapping: 0.179200 ms MarkObjects: 2.625000 ms DeleteObjects: 0.157300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006194 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.877 seconds +Domain Reload Profiling: + ReloadAssembly (1877ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1698ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (97ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4606. +Total: 3.235100 ms (FindLiveObjects: 0.301800 ms CreateObjectMapping: 0.179200 ms MarkObjects: 2.611000 ms DeleteObjects: 0.142200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005702 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.937 seconds +Domain Reload Profiling: + ReloadAssembly (1937ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1697ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (428ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (316ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4610. +Total: 3.242700 ms (FindLiveObjects: 0.311900 ms CreateObjectMapping: 0.178300 ms MarkObjects: 2.605300 ms DeleteObjects: 0.146100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005831 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.804 seconds +Domain Reload Profiling: + ReloadAssembly (1805ms) + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1632ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (378ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (285ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.7 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4614. +Total: 3.383500 ms (FindLiveObjects: 0.377900 ms CreateObjectMapping: 0.234900 ms MarkObjects: 2.629000 ms DeleteObjects: 0.140300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005819 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.940 seconds +Domain Reload Profiling: + ReloadAssembly (1941ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1760ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (452ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (377ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (276ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4618. +Total: 3.366700 ms (FindLiveObjects: 0.311400 ms CreateObjectMapping: 0.187700 ms MarkObjects: 2.721200 ms DeleteObjects: 0.145500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005382 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.855 seconds +Domain Reload Profiling: + ReloadAssembly (1855ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1664ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (413ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (312ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4622. +Total: 3.474000 ms (FindLiveObjects: 0.293500 ms CreateObjectMapping: 0.171800 ms MarkObjects: 2.831500 ms DeleteObjects: 0.176200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005589 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.112 seconds +Domain Reload Profiling: + ReloadAssembly (2112ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1841ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (552ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4626. +Total: 3.148800 ms (FindLiveObjects: 0.313400 ms CreateObjectMapping: 0.194200 ms MarkObjects: 2.529700 ms DeleteObjects: 0.110400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005600 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.88 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.887 seconds +Domain Reload Profiling: + ReloadAssembly (1887ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1693ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (384ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4630. +Total: 3.200400 ms (FindLiveObjects: 0.301100 ms CreateObjectMapping: 0.175400 ms MarkObjects: 2.622200 ms DeleteObjects: 0.101000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005386 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.059 seconds +Domain Reload Profiling: + ReloadAssembly (2060ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1867ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.52 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4634. +Total: 2.878200 ms (FindLiveObjects: 0.313200 ms CreateObjectMapping: 0.181800 ms MarkObjects: 2.278200 ms DeleteObjects: 0.104200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005680 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.724 seconds +Domain Reload Profiling: + ReloadAssembly (1725ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1546ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (1ms) RebuildScriptCaches (47ms) SetupLoadedEditorAssemblies (324ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) + AwakeInstancesAfterBackupRestoration (15ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.57 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.6 MB. -System memory in use after: 136.7 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4157. -Total: 2.699200 ms (FindLiveObjects: 0.272300 ms CreateObjectMapping: 0.206000 ms MarkObjects: 2.121300 ms DeleteObjects: 0.098600 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4638. +Total: 3.284500 ms (FindLiveObjects: 0.308200 ms CreateObjectMapping: 0.175000 ms MarkObjects: 2.666800 ms DeleteObjects: 0.133700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -736,4 +7384,500 @@ AssetImportParameters requested are different than current active one (requested custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -AssetImportWorkerClient::OnTransportError - code=2 error=End of file +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006382 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.903 seconds +Domain Reload Profiling: + ReloadAssembly (1904ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1676ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (459ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.38 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4642. +Total: 3.797400 ms (FindLiveObjects: 0.337700 ms CreateObjectMapping: 0.277600 ms MarkObjects: 3.046300 ms DeleteObjects: 0.134800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007163 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.998 seconds +Domain Reload Profiling: + ReloadAssembly (1999ms) + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1788ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (336ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4646. +Total: 3.533400 ms (FindLiveObjects: 0.285900 ms CreateObjectMapping: 0.159800 ms MarkObjects: 2.878500 ms DeleteObjects: 0.208400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005438 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.955 seconds +Domain Reload Profiling: + ReloadAssembly (1956ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1760ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (495ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4650. +Total: 3.415900 ms (FindLiveObjects: 0.301600 ms CreateObjectMapping: 0.168700 ms MarkObjects: 2.796800 ms DeleteObjects: 0.147600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015609 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.872 seconds +Domain Reload Profiling: + ReloadAssembly (1872ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1687ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (367ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 142.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4654. +Total: 3.086000 ms (FindLiveObjects: 0.296400 ms CreateObjectMapping: 0.166900 ms MarkObjects: 2.481500 ms DeleteObjects: 0.140400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009752 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.13 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.908 seconds +Domain Reload Profiling: + ReloadAssembly (1909ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1719ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (450ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (361ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 142.8 MB. +System memory in use after: 143.0 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4658. +Total: 3.421800 ms (FindLiveObjects: 0.451300 ms CreateObjectMapping: 0.262300 ms MarkObjects: 2.561400 ms DeleteObjects: 0.145800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005330 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.949 seconds +Domain Reload Profiling: + ReloadAssembly (1949ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1765ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Callback registration failed. Increase kMaxCallback. + +Fatal Error! Callback registration failed. Increase kMaxCallback. + +Crash!!! +SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Mono;.;C:\Users\braus\Desktop\Chess Recode;C:\Users\braus\Desktop\Chess Recode\Library\BurstCache\JIT;C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor;C:\WINDOWS;C:\WINDOWS\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'braus' +OS-Version: 10.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe:Unity.exe (00007FF656970000), size: 81674240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2021.1.13.12440 +C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (00007FFDDE020000), size: 2125824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFDDCD20000), size: 774144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFDDBA10000), size: 3620864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.132 +C:\WINDOWS\System32\CRYPT32.dll:CRYPT32.dll (00007FFDDB5C0000), size: 1449984 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\ucrtbase.dll:ucrtbase.dll (00007FFDDB730000), size: 1118208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\USER32.dll:USER32.dll (00007FFDDCB00000), size: 1753088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.37 +C:\WINDOWS\System32\win32u.dll:win32u.dll (00007FFDDBE00000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\WINDOWS\System32\GDI32.dll:GDI32.dll (00007FFDDDAC0000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\gdi32full.dll:gdi32full.dll (00007FFDDB8F0000), size: 1122304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\msvcp_win.dll:msvcp_win.dll (00007FFDDB850000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFDDC840000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\System32\msvcrt.dll:msvcrt.dll (00007FFDDD9F0000), size: 667648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFD636E0000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 +C:\WINDOWS\System32\sechost.dll:sechost.dll (00007FFDDD950000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\RPCRT4.dll:RPCRT4.dll (00007FFDDC460000), size: 1183744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\SHELL32.dll:SHELL32.dll (00007FFDDD1A0000), size: 8032256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFDDCED0000), size: 380928 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\ole32.dll:ole32.dll (00007FFDDC6A0000), size: 1679360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\combase.dll:combase.dll (00007FFDDBF50000), size: 3637248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\IMM32.dll:IMM32.dll (00007FFDDC8F0000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFDDDB70000), size: 4632576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFD5FFA0000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\WS2_32.dll:WS2_32.dll (00007FFDDCCB0000), size: 454656 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFDDC930000), size: 876544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFDB0090000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\WLDAP32.dll:WLDAP32.dll (00007FFDDCAA0000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\WINTRUST.dll:WINTRUST.dll (00007FFDDBD90000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 +C:\WINDOWS\System32\Normaliz.dll:Normaliz.dll (00007FFDDC2D0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6414336 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\etccompress.dll:etccompress.dll (00007FFD63200000), size: 5066752 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFDA9540000), size: 1744896 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFDCFDD0000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 +C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFDACE20000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFDDA260000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFDD61C0000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (00007FFDBBD30000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (00007FFDD6A30000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\bcrypt.dll:bcrypt.dll (00007FFDDAEF0000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\HID.DLL:HID.DLL (00007FFDD9F30000), size: 57344 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FFD7EA20000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFD62970000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\tbb.dll:tbb.dll (00007FFDB36A0000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 +C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (00007FFDD5910000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFDC76D0000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\WINDOWS\SYSTEM32\MSWSOCK.dll:MSWSOCK.dll (00007FFDDAB30000), size: 421888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFDC76F0000), size: 577536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\WINDOWS\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFDACD70000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFDB90C0000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 +C:\WINDOWS\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFD7E520000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 +C:\WINDOWS\SYSTEM32\Secur32.dll:Secur32.dll (00007FFDCCA90000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFDC76C0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 +C:\WINDOWS\SYSTEM32\dxcore.dll:dxcore.dll (00007FFDD8E80000), size: 229376 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFDDA940000), size: 262144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FFDCF030000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL.dll:OpenRL.dll (000002294FF70000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 +C:\WINDOWS\SYSTEM32\MSVCP100.dll:MSVCP100.dll (0000000070170000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +C:\WINDOWS\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000070090000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\embree.dll:embree.dll (00007FFD5EFB0000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 +C:\WINDOWS\SYSTEM32\cfgmgr32.DLL:cfgmgr32.DLL (00007FFDDB200000), size: 311296 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (0000022950BC0000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 +C:\WINDOWS\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFDDADD0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFDDA720000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFDDBE30000), size: 524288 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (00007FFDD8BD0000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\System32\shcore.dll:shcore.dll (00007FFDDCDE0000), size: 958464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFDD96C0000), size: 8790016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\wintypes.dll:wintypes.dll (00007FFDD9550000), size: 1466368 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\SYSTEM32\profapi.dll:profapi.dll (00007FFDDB430000), size: 135168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\clbcatq.dll:clbcatq.dll (00007FFDDCF30000), size: 716800 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 +C:\WINDOWS\System32\netprofm.dll:netprofm.dll (00007FFDD7970000), size: 462848 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\System32\NSI.dll:NSI.dll (00007FFDDC690000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFDD6320000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFDD6780000), size: 122880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFDDA290000), size: 946176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\npmproxy.dll:npmproxy.dll (00007FFDD3DE0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFDD4080000), size: 528384 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFDD3FF0000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFD5C690000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\SYSTEM32\d3d11.dll:d3d11.dll (00007FFDD4A00000), size: 2621440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\dxgi.dll:dxgi.dll (00007FFDD8D40000), size: 995328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll:directxdatabasehelper.dll (00007FFDD5FC0000), size: 278528 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFDD8F00000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvldumdx.dll:nvldumdx.dll (00007FFDD2060000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 +C:\WINDOWS\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFDD5010000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\drvstore.dll:drvstore.dll (00007FFDD22D0000), size: 1347584 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\devobj.dll:devobj.dll (00007FFDDB1D0000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\wldp.dll:wldp.dll (00007FFDDAE40000), size: 249856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FFDDAD90000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\System32\imagehlp.dll:imagehlp.dll (00007FFDDCA10000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFDDAD70000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\rsaenh.dll:rsaenh.dll (00007FFDDA680000), size: 217088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 +C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvwgf2umx.dll:nvwgf2umx.dll (00007FFD9EA70000), size: 77615104 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 +C:\WINDOWS\system32\nvspcap64.dll:nvspcap64.dll (00007FFDAC180000), size: 2895872 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.23.0.74 +C:\WINDOWS\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFDD15E0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFDD0990000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFDD1040000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\system32\wbem\fastprox.dll:fastprox.dll (00007FFDD1060000), size: 1024000 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\amsi.dll:amsi.dll (00007FFDD0C20000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (00007FFDDAC20000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2108.7-0\MpOav.dll:MpOav.dll (00007FFDD0BA0000), size: 495616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.2108.7 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFD5C620000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 +C:\WINDOWS\SYSTEM32\opencl.dll:opencl.dll (00007FFD5C4B0000), size: 1482752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\radeonrays.dll:radeonrays.dll (00007FFD5C420000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFD5BCB0000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' +C:\WINDOWS\System32\PSAPI.DLL:PSAPI.DLL (00007FFDDBF40000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFDD75C0000), size: 1011712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.37 +C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22000.120_none_9d947278b86cc467\comctl32.dll:comctl32.dll (00007FFDCC7E0000), size: 2772992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.22000.120 +C:\WINDOWS\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFDD3E40000), size: 1761280 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\MrmCoreR.dll:MrmCoreR.dll (00007FFDC45A0000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\Windows\System32\iertutil.dll:iertutil.dll (00007FFDD5A50000), size: 2826240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.22000.1 +C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll:windows.staterepositorycore.dll (00007FFDD6150000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FFDB87A0000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.51 +C:\WINDOWS\SYSTEM32\windows.staterepositoryclient.dll:windows.staterepositoryclient.dll (00007FFDCC430000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\bcp47mrm.dll:bcp47mrm.dll (00007FFDBF940000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\Windows\System32\Windows.UI.dll:Windows.UI.dll (00007FFDCDCA0000), size: 1605632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22000.71_none_a5885354eb10b430\gdiplus.dll:gdiplus.dll (00007FFDCD680000), size: 1781760 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 +C:\WINDOWS\System32\MSCTF.dll:MSCTF.dll (00007FFDDC340000), size: 1171456 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 +C:\WINDOWS\SYSTEM32\edputil.dll:edputil.dll (00007FFDBE490000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\VAULTCLI.dll:VAULTCLI.dll (00007FFDBD670000), size: 364544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\Windows.StateRepositoryPS.dll:Windows.StateRepositoryPS.dll (00007FFDC2800000), size: 1261568 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 +C:\WINDOWS\SYSTEM32\policymanager.dll:policymanager.dll (00007FFDD5D10000), size: 655360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\msvcp110_win.dll:msvcp110_win.dll (00007FFDD5870000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\Windows\System32\Windows.System.Launcher.dll:Windows.System.Launcher.dll (00007FFDCC470000), size: 1290240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 +C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFDC5160000), size: 2232320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 + +========== OUTPUTTING STACK TRACE ================== + +0x00007FFDDBA5466C (KERNELBASE) RaiseException +0x00007FF657B3282C (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF657B330BE (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF658F48EE8 (Unity) DebugStringToFilePostprocessedStacktrace +0x00007FF658F486DB (Unity) DebugStringToFile +0x00007FF657F07451 (Unity) LoadDomainAndUserAssemblies +0x00007FF657F0776C (Unity) LoadUserAssemblies +0x00007FF658113458 (Unity) ::operator() +0x00007FF65819A2F2 (Unity) asio::detail::completion_handler >::do_complete +0x00007FF65819C560 (Unity) asio::detail::win_iocp_io_service::do_one +0x00007FF65819FC4E (Unity) asio::io_service::run +0x00007FF65813C12A (Unity) RunAssetImportWorkerClientV2 +0x00007FF65813C180 (Unity) RunAssetImporterV2 +0x00007FF657C3FA37 (Unity) Application::InitializeProject +0x00007FF65804F127 (Unity) WinMain +0x00007FF659B7D662 (Unity) __scrt_common_main_seh +0x00007FFDDCD354E0 (KERNEL32) BaseThreadInitThunk +0x00007FFDDE02485B (ntdll) RtlUserThreadStart + +========== END OF STACKTRACE =========== + +A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: + * C:/Users/braus/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Chess Recode/Logs/AssetImportWorker0.log b/Chess Recode/Logs/AssetImportWorker0.log index c864509..5dc9599 100644 --- a/Chess Recode/Logs/AssetImportWorker0.log +++ b/Chess Recode/Logs/AssetImportWorker0.log @@ -11,19 +11,19 @@ C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -C:/Users/braus/Desktop/Chess Recode +F:/Gihub Projects/Chess Unity/Chess-Unity/Chess Recode -logFile Logs/AssetImportWorker0.log -srvPort -52476 -Successfully changed project path to: C:/Users/braus/Desktop/Chess Recode -C:/Users/braus/Desktop/Chess Recode +61582 +Successfully changed project path to: F:/Gihub Projects/Chess Unity/Chess-Unity/Chess Recode +F:/Gihub Projects/Chess Unity/Chess-Unity/Chess Recode Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 128.82 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 138.37 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.1.13f1 (a03098edbbe0) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path C:/Users/braus/Desktop/Chess Recode/Assets +[Subsystems] Discovering subsystems at path F:/Gihub Projects/Chess Unity/Chess-Unity/Chess Recode/Assets GfxDevice: creating device client; threaded=0; jobified=0 Direct3D: Version: Direct3D 11.0 [level 11.1] @@ -35,91 +35,91 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56452 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56232 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002860 seconds. +Registered in 0.001558 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 122.51 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 123.62 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.933 seconds +- Completed reload, in 2.540 seconds Domain Reload Profiling: - ReloadAssembly (1933ms) - BeginReloadAssembly (76ms) + ReloadAssembly (2540ms) + BeginReloadAssembly (140ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - EndReloadAssembly (582ms) - LoadAssemblies (74ms) + CreateAndSetChildDomain (3ms) + EndReloadAssembly (594ms) + LoadAssemblies (135ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) + SetupTypeCache (206ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (286ms) + SetupLoadedEditorAssemblies (289ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (123ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (124ms) BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (121ms) - ProcessInitializeOnLoadMethodAttributes (34ms) + ProcessInitializeOnLoadAttributes (120ms) + ProcessInitializeOnLoadMethodAttributes (36ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.005727 seconds. +Registered in 0.005450 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 119.87 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 137.94 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.448 seconds +- Completed reload, in 6.230 seconds Domain Reload Profiling: - ReloadAssembly (1449ms) - BeginReloadAssembly (169ms) + ReloadAssembly (6231ms) + BeginReloadAssembly (173ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (1217ms) - LoadAssemblies (101ms) + CreateAndSetChildDomain (21ms) + EndReloadAssembly (5993ms) + LoadAssemblies (97ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (408ms) + SetupTypeCache (4729ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (73ms) - SetupLoadedEditorAssemblies (519ms) + RebuildScriptCaches (99ms) + SetupLoadedEditorAssemblies (865ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (120ms) - BeforeProcessingInitializeOnLoad (101ms) - ProcessInitializeOnLoadAttributes (269ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (7ms) + RefreshPlugins (138ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (561ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3673 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.3 MB. -System memory in use after: 136.4 MB. +Unloading 3678 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.5 MB. +System memory in use after: 136.5 MB. -Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 4117. -Total: 2.982900 ms (FindLiveObjects: 0.267800 ms CreateObjectMapping: 0.194100 ms MarkObjects: 2.389400 ms DeleteObjects: 0.130500 ms) +Unloading 37 unused Assets to reduce memory usage. Loaded Objects now: 4122. +Total: 5.903400 ms (FindLiveObjects: 0.299700 ms CreateObjectMapping: 0.252800 ms MarkObjects: 5.213300 ms DeleteObjects: 0.136000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -133,201 +133,57 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - path: Assets/Scripts/Cell.cs - artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9531837c0e69d1fc32af4f7d1fdff8e3') in 0.065046 seconds -======================================================================== -Received Import Request. - Time since last request: 8.416678 seconds. - path: Assets/Scripts/CharacterData.cs - artifactKey: Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CharacterData.cs using Guid(82078bc56df7bd948ae23d6db04fd436) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6c7d05e00926135d02db635738ee597') in 0.008433 seconds -======================================================================== -Received Import Request. - Time since last request: 12.118747 seconds. path: Assets/Scripts/Game.cs artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a12c77b9f1995ae839d1e7335355cd8') in 0.010855 seconds +Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39806111058b4f6b5b77fca8ca437edb') in 0.125140 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.006608 seconds. +Registered in 0.016221 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.302 seconds +- Completed reload, in 1.351 seconds Domain Reload Profiling: - ReloadAssembly (1302ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - EndReloadAssembly (1098ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (456ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (356ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (255ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3667 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.3 MB. -System memory in use after: 136.4 MB. - -Unloading 29 unused Assets to reduce memory usage. Loaded Objects now: 4117. -Total: 7.962400 ms (FindLiveObjects: 0.423200 ms CreateObjectMapping: 0.634600 ms MarkObjects: 6.797500 ms DeleteObjects: 0.105900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 20.722440 seconds. - path: Assets/Scripts/Character.cs - artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5030a6167347696a569aaafe72bdf0dd') in 0.022838 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005801 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.010 seconds -Domain Reload Profiling: - ReloadAssembly (2010ms) - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (1737ms) - LoadAssemblies (171ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (535ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (571ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (130ms) - ProcessInitializeOnLoadAttributes (385ms) - ProcessInitializeOnLoadMethodAttributes (42ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (37ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3668 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.3 MB. -System memory in use after: 136.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4122. -Total: 4.022400 ms (FindLiveObjects: 0.328700 ms CreateObjectMapping: 0.312600 ms MarkObjects: 3.273300 ms DeleteObjects: 0.106400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 180.447612 seconds. - path: Assets/Scripts/Character.cs - artifactKey: Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Character.cs using Guid(179b17dcb667118419acf51301f94a71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6157f3b3e4a399c3ecd25ba085d68c01') in 0.070117 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006129 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.248 seconds -Domain Reload Profiling: - ReloadAssembly (1248ms) - BeginReloadAssembly (134ms) + ReloadAssembly (1352ms) + BeginReloadAssembly (126ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1053ms) - LoadAssemblies (97ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1159ms) + LoadAssemblies (96ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (392ms) + SetupTypeCache (528ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (379ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (363ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (111ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (11ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3668 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.4 MB. -System memory in use after: 136.5 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.5 MB. +System memory in use after: 136.6 MB. Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4126. -Total: 3.378500 ms (FindLiveObjects: 0.324700 ms CreateObjectMapping: 0.252700 ms MarkObjects: 2.688500 ms DeleteObjects: 0.111100 ms) +Total: 3.620400 ms (FindLiveObjects: 0.271000 ms CreateObjectMapping: 0.183400 ms MarkObjects: 3.058200 ms DeleteObjects: 0.106600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -341,59 +197,53 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 74.102200 seconds. - path: Assets/Scripts/Cell.cs - artifactKey: Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Cell.cs using Guid(914ccdfc751746744ab0d9986aaf1420) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b6bf045ae41118c02bd2cbab501b24') in 0.064522 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.006686 seconds. +Registered in 0.004345 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 3.353 seconds +- Completed reload, in 1.223 seconds Domain Reload Profiling: - ReloadAssembly (3353ms) - BeginReloadAssembly (165ms) + ReloadAssembly (1223ms) + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (43ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (3056ms) - LoadAssemblies (154ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (989ms) + LoadAssemblies (91ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (519ms) + SetupTypeCache (379ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (884ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (340ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (350ms) - ProcessInitializeOnLoadAttributes (498ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (12ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3669 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.4 MB. -System memory in use after: 136.6 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.6 MB. +System memory in use after: 136.7 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4131. -Total: 3.493500 ms (FindLiveObjects: 0.321000 ms CreateObjectMapping: 0.238200 ms MarkObjects: 2.778600 ms DeleteObjects: 0.153900 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4130. +Total: 2.842300 ms (FindLiveObjects: 0.278600 ms CreateObjectMapping: 0.196300 ms MarkObjects: 2.259300 ms DeleteObjects: 0.106800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -409,38 +259,98 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.041425 seconds. +Registered in 0.004093 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.185 seconds +- Completed reload, in 1.136 seconds Domain Reload Profiling: - ReloadAssembly (1186ms) + ReloadAssembly (1137ms) BeginReloadAssembly (124ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1000ms) - LoadAssemblies (103ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (945ms) + LoadAssemblies (89ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (385ms) + SetupTypeCache (361ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (326ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (316ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (240ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (231ms) ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.6 MB. +System memory in use after: 136.7 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4134. +Total: 3.210000 ms (FindLiveObjects: 0.287700 ms CreateObjectMapping: 0.182100 ms MarkObjects: 2.597400 ms DeleteObjects: 0.142000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004317 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.301 seconds +Domain Reload Profiling: + ReloadAssembly (1301ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (85ms) + EndReloadAssembly (1008ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (11ms) @@ -448,12 +358,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3669 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 136.5 MB. -System memory in use after: 136.6 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.6 MB. +System memory in use after: 136.7 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4135. -Total: 3.424200 ms (FindLiveObjects: 0.265500 ms CreateObjectMapping: 0.176900 ms MarkObjects: 2.835800 ms DeleteObjects: 0.144900 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4138. +Total: 3.483600 ms (FindLiveObjects: 0.260000 ms CreateObjectMapping: 0.248100 ms MarkObjects: 2.824500 ms DeleteObjects: 0.150100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -467,149 +377,53 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 39.100791 seconds. - path: Assets/Graphics/BlackField.png - artifactKey: Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/BlackField.png using Guid(c260f07e86bdb4c41aed2c8e4e548aec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17a7b5c9d58d2dd8dec80870c41c0131') in 0.140288 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000306 seconds. - path: Assets/Graphics/BlackField.prefab - artifactKey: Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/BlackField.prefab using Guid(0793b24456cf4524993e150ea5b45400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14c0d1bbf872f7e9286ca33bb99ec5bb') in 0.077872 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000277 seconds. - path: Assets/Graphics/WhiteField.prefab - artifactKey: Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/WhiteField.prefab using Guid(ff5b42e045b06b14a8af707d79ae597c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a353b8e7c97e9a19f83e0609a27cf2f') in 0.022800 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000365 seconds. - path: Assets/Graphics/WhiteField.png - artifactKey: Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/WhiteField.png using Guid(97e4a780da3f5ba4880bba62e9acfb51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4033d17f2028e5d5dff2a4e8a502c90c') in 0.021647 seconds -======================================================================== -Received Import Request. - Time since last request: 22.897689 seconds. - path: Assets/Scripts/Rook.cs - artifactKey: Guid(e472b40b9823e414690354398c441ee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Rook.cs using Guid(e472b40b9823e414690354398c441ee1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c50e69256395c4b1e0bc0b5627a63d8') in 0.018961 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005532 seconds. +Registered in 0.004949 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 1.14 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.271 seconds +- Completed reload, in 1.499 seconds Domain Reload Profiling: - ReloadAssembly (1272ms) - BeginReloadAssembly (124ms) + ReloadAssembly (1499ms) + BeginReloadAssembly (140ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1086ms) - LoadAssemblies (110ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1299ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (416ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (337ms) + SetupTypeCache (523ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (429ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3672 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.6 MB. -System memory in use after: 141.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4180. -Total: 3.187400 ms (FindLiveObjects: 0.337000 ms CreateObjectMapping: 0.162300 ms MarkObjects: 2.525200 ms DeleteObjects: 0.161900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 8.211132 seconds. - path: Assets/Scripts/Kni.cs - artifactKey: Guid(39bc392329a01984b86cf500662c0620) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Kni.cs using Guid(39bc392329a01984b86cf500662c0620) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f8dd5bb00797553e4bd27398418a6a9') in 0.013691 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005348 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.213 seconds -Domain Reload Profiling: - ReloadAssembly (1214ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1023ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (384ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (337ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (246ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (296ms) ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3670 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.5 MB. -System memory in use after: 141.6 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.6 MB. +System memory in use after: 136.7 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4184. -Total: 3.269500 ms (FindLiveObjects: 0.267600 ms CreateObjectMapping: 0.191100 ms MarkObjects: 2.662500 ms DeleteObjects: 0.147300 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4142. +Total: 3.254100 ms (FindLiveObjects: 0.376900 ms CreateObjectMapping: 0.181500 ms MarkObjects: 2.558700 ms DeleteObjects: 0.136000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -623,383 +437,53 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 15.010865 seconds. - path: Assets/Scripts/Knight.cs - artifactKey: Guid(413f30f504354374eac5ff0f4a42653d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Knight.cs using Guid(413f30f504354374eac5ff0f4a42653d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '985f7f15c37e9d2363a3b22c884343cf') in 0.021778 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005623 seconds. +Registered in 0.006117 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.226 seconds +- Completed reload, in 1.317 seconds Domain Reload Profiling: - ReloadAssembly (1226ms) - BeginReloadAssembly (131ms) + ReloadAssembly (1317ms) + BeginReloadAssembly (172ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (40ms) - EndReloadAssembly (1027ms) - LoadAssemblies (96ms) + EndReloadAssembly (1078ms) + LoadAssemblies (145ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (385ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (330ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.01 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3671 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.5 MB. -System memory in use after: 141.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4189. -Total: 3.606500 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.207000 ms MarkObjects: 2.996100 ms DeleteObjects: 0.109300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 11.857018 seconds. - path: Assets/Scripts/Bishop.cs - artifactKey: Guid(843bca5b9b65c744b8f87208f3ce7aef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Bishop.cs using Guid(843bca5b9b65c744b8f87208f3ce7aef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf7a675f70336624b448e06e5d8f94ac') in 0.013482 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005230 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.205 seconds -Domain Reload Profiling: - ReloadAssembly (1205ms) - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1018ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (380ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (328ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3672 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.6 MB. -System memory in use after: 141.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4194. -Total: 2.969600 ms (FindLiveObjects: 0.273600 ms CreateObjectMapping: 0.172000 ms MarkObjects: 2.416100 ms DeleteObjects: 0.106800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 16.923356 seconds. - path: Assets/Scripts/Queen.cs - artifactKey: Guid(4ecf79ff7b31c234f89070f40365082e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Queen.cs using Guid(4ecf79ff7b31c234f89070f40365082e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f091e14425affacda6a5b34d8f7ff3a') in 0.020258 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005406 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.190 seconds -Domain Reload Profiling: - ReloadAssembly (1191ms) - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1014ms) - LoadAssemblies (89ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (333ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3673 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.6 MB. -System memory in use after: 141.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4199. -Total: 2.852700 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.181600 ms MarkObjects: 2.291900 ms DeleteObjects: 0.109500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 9.441218 seconds. - path: Assets/Scripts/King.cs - artifactKey: Guid(9fd968408c0465c4bb0d7960a1be6a9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/King.cs using Guid(9fd968408c0465c4bb0d7960a1be6a9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48ddeece1e7b59c99b88d1a30ed936af') in 0.017020 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005416 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.227 seconds -Domain Reload Profiling: - ReloadAssembly (1227ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1039ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (373ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (332ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 8.37 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3674 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.6 MB. -System memory in use after: 141.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4204. -Total: 8.641900 ms (FindLiveObjects: 0.671700 ms CreateObjectMapping: 0.896300 ms MarkObjects: 6.962100 ms DeleteObjects: 0.110300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 10.581538 seconds. - path: Assets/Scripts/Pawn.cs - artifactKey: Guid(451b5186406195f4c87dd2a0934390db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Pawn.cs using Guid(451b5186406195f4c87dd2a0934390db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75ff8f24f6018c1174984cd38665fed6') in 0.022491 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005357 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.217 seconds -Domain Reload Profiling: - ReloadAssembly (1218ms) - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1034ms) - LoadAssemblies (90ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (379ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (329ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3675 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4209. -Total: 2.813700 ms (FindLiveObjects: 0.297300 ms CreateObjectMapping: 0.182500 ms MarkObjects: 2.234700 ms DeleteObjects: 0.098300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005388 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.257 seconds -Domain Reload Profiling: - ReloadAssembly (1257ms) - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1072ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (377ms) - ReleaseScriptCaches (1ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (2ms) RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (338ms) + SetupLoadedEditorAssemblies (350ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (248ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) + AwakeInstancesAfterBackupRestoration (14ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 1.39 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3675 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.6 MB. +System memory in use after: 136.7 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4213. -Total: 3.117300 ms (FindLiveObjects: 0.260100 ms CreateObjectMapping: 0.167900 ms MarkObjects: 2.581900 ms DeleteObjects: 0.106600 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4146. +Total: 2.801500 ms (FindLiveObjects: 0.260500 ms CreateObjectMapping: 0.183700 ms MarkObjects: 2.253100 ms DeleteObjects: 0.103100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1013,18 +497,72 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 247.684663 seconds. - path: Assets/Scripts/Game.cs - artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c572e961b1b3442c2d449aac044ddae5') in 0.015509 seconds +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004582 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.16 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.338 seconds +Domain Reload Profiling: + ReloadAssembly (1338ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1103ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4150. +Total: 3.309600 ms (FindLiveObjects: 0.248200 ms CreateObjectMapping: 0.172300 ms MarkObjects: 2.790600 ms DeleteObjects: 0.097600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005619 seconds. +Registered in 0.004468 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. @@ -1032,40 +570,40 @@ Mono: successfully reloaded assembly - Completed reload, in 1.258 seconds Domain Reload Profiling: ReloadAssembly (1259ms) - BeginReloadAssembly (128ms) + BeginReloadAssembly (157ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (12ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (1067ms) - LoadAssemblies (93ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1037ms) + LoadAssemblies (106ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (376ms) + SetupTypeCache (412ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (348ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (333ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (262ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (4ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.64 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4218. -Total: 23.487400 ms (FindLiveObjects: 0.803900 ms CreateObjectMapping: 18.089200 ms MarkObjects: 4.386100 ms DeleteObjects: 0.206600 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4154. +Total: 2.903600 ms (FindLiveObjects: 0.267300 ms CreateObjectMapping: 0.175200 ms MarkObjects: 2.356800 ms DeleteObjects: 0.103200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1079,37 +617,391 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 16.801968 seconds. - path: Assets/Scripts/Game.cs - artifactKey: Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Game.cs using Guid(64bccbbe14a86034a904585f5656f5e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7d3ce4cd79a3539d212f3d22906f5da') in 0.178622 seconds +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004272 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.245 seconds +Domain Reload Profiling: + ReloadAssembly (1246ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1059ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (417ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (237ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4158. +Total: 3.099700 ms (FindLiveObjects: 0.260400 ms CreateObjectMapping: 0.163000 ms MarkObjects: 2.577000 ms DeleteObjects: 0.098400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005346 seconds. +Registered in 0.004716 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.204 seconds +- Completed reload, in 1.245 seconds Domain Reload Profiling: - ReloadAssembly (1205ms) - BeginReloadAssembly (120ms) + ReloadAssembly (1245ms) + BeginReloadAssembly (114ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (37ms) - EndReloadAssembly (1011ms) - LoadAssemblies (90ms) + EndReloadAssembly (1061ms) + LoadAssemblies (103ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (355ms) + SetupTypeCache (403ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.26 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4162. +Total: 2.945400 ms (FindLiveObjects: 0.264400 ms CreateObjectMapping: 0.180600 ms MarkObjects: 2.392700 ms DeleteObjects: 0.106400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014617 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.345 seconds +Domain Reload Profiling: + ReloadAssembly (1345ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1120ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (416ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4166. +Total: 2.818800 ms (FindLiveObjects: 0.277500 ms CreateObjectMapping: 0.196000 ms MarkObjects: 2.195100 ms DeleteObjects: 0.136900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005187 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 1.06 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.359 seconds +Domain Reload Profiling: + ReloadAssembly (1359ms) + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1169ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (461ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4170. +Total: 3.447200 ms (FindLiveObjects: 0.262200 ms CreateObjectMapping: 0.172000 ms MarkObjects: 2.912300 ms DeleteObjects: 0.099500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004347 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.304 seconds +Domain Reload Profiling: + ReloadAssembly (1305ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + EndReloadAssembly (1116ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (419ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (306ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4174. +Total: 4.271100 ms (FindLiveObjects: 0.501400 ms CreateObjectMapping: 0.608100 ms MarkObjects: 3.012500 ms DeleteObjects: 0.148200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004241 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.184 seconds +Domain Reload Profiling: + ReloadAssembly (1184ms) + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1014ms) + LoadAssemblies (89ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4178. +Total: 9.381300 ms (FindLiveObjects: 0.580700 ms CreateObjectMapping: 1.124800 ms MarkObjects: 7.411500 ms DeleteObjects: 0.262900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005253 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.283 seconds +Domain Reload Profiling: + ReloadAssembly (1284ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1089ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (423ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) SetupLoadedEditorAssemblies (323ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) @@ -1118,20 +1010,20 @@ Domain Reload Profiling: BeforeProcessingInitializeOnLoad (66ms) ProcessInitializeOnLoadAttributes (237ms) ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.98 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4222. -Total: 3.528500 ms (FindLiveObjects: 0.247900 ms CreateObjectMapping: 0.339200 ms MarkObjects: 2.793900 ms DeleteObjects: 0.146300 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4182. +Total: 3.173500 ms (FindLiveObjects: 0.252300 ms CreateObjectMapping: 0.161800 ms MarkObjects: 2.617200 ms DeleteObjects: 0.141400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -1147,3591 +1039,231 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005595 seconds. +Registered in 0.004318 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.286 seconds +- Completed reload, in 1.246 seconds Domain Reload Profiling: - ReloadAssembly (1286ms) - BeginReloadAssembly (145ms) + ReloadAssembly (1247ms) + BeginReloadAssembly (123ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1081ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1058ms) LoadAssemblies (97ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (424ms) + SetupTypeCache (378ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.20 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.8 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4186. +Total: 4.443900 ms (FindLiveObjects: 0.393500 ms CreateObjectMapping: 0.393800 ms MarkObjects: 3.543100 ms DeleteObjects: 0.112100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010133 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.381 seconds +Domain Reload Profiling: + ReloadAssembly (1382ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1191ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (374ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.7 MB. +System memory in use after: 136.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4190. +Total: 4.406300 ms (FindLiveObjects: 0.484600 ms CreateObjectMapping: 0.220400 ms MarkObjects: 3.575400 ms DeleteObjects: 0.124200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004980 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.276 seconds +Domain Reload Profiling: + ReloadAssembly (1276ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1074ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (398ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4194. +Total: 4.002300 ms (FindLiveObjects: 0.279500 ms CreateObjectMapping: 0.191000 ms MarkObjects: 3.419400 ms DeleteObjects: 0.111000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004537 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.196 seconds +Domain Reload Profiling: + ReloadAssembly (1197ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1031ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (367ms) ReleaseScriptCaches (2ms) RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (322ms) + SetupLoadedEditorAssemblies (325ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4226. -Total: 4.062900 ms (FindLiveObjects: 0.255000 ms CreateObjectMapping: 0.159500 ms MarkObjects: 3.449400 ms DeleteObjects: 0.197700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005419 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.185 seconds -Domain Reload Profiling: - ReloadAssembly (1186ms) - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1004ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (353ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (318ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (232ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4230. -Total: 3.303800 ms (FindLiveObjects: 0.258100 ms CreateObjectMapping: 0.160200 ms MarkObjects: 2.740200 ms DeleteObjects: 0.144500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.015857 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.650 seconds -Domain Reload Profiling: - ReloadAssembly (1650ms) - BeginReloadAssembly (173ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (72ms) - EndReloadAssembly (1392ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (470ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (443ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (331ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4234. -Total: 3.834700 ms (FindLiveObjects: 0.320700 ms CreateObjectMapping: 0.158700 ms MarkObjects: 3.206600 ms DeleteObjects: 0.147400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.014437 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.458 seconds -Domain Reload Profiling: - ReloadAssembly (1458ms) - BeginReloadAssembly (165ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (77ms) - EndReloadAssembly (1202ms) - LoadAssemblies (122ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (401ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (336ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.7 MB. -System memory in use after: 141.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4238. -Total: 3.144400 ms (FindLiveObjects: 0.325400 ms CreateObjectMapping: 0.210700 ms MarkObjects: 2.486300 ms DeleteObjects: 0.120900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005569 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.530 seconds -Domain Reload Profiling: - ReloadAssembly (1530ms) - BeginReloadAssembly (245ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (117ms) - EndReloadAssembly (1223ms) - LoadAssemblies (118ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (405ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (405ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (311ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (28ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4242. -Total: 3.474900 ms (FindLiveObjects: 0.260800 ms CreateObjectMapping: 0.166000 ms MarkObjects: 2.904000 ms DeleteObjects: 0.143300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.014518 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.459 seconds -Domain Reload Profiling: - ReloadAssembly (1460ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - EndReloadAssembly (1262ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (479ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (343ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4246. -Total: 3.045600 ms (FindLiveObjects: 0.417100 ms CreateObjectMapping: 0.246400 ms MarkObjects: 2.256200 ms DeleteObjects: 0.125100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005822 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.334 seconds -Domain Reload Profiling: - ReloadAssembly (1335ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1134ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (397ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (340ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4250. -Total: 2.764000 ms (FindLiveObjects: 0.282500 ms CreateObjectMapping: 0.172300 ms MarkObjects: 2.212600 ms DeleteObjects: 0.095800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005604 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.494 seconds -Domain Reload Profiling: - ReloadAssembly (1494ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1273ms) - LoadAssemblies (136ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (477ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (348ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4254. -Total: 3.334300 ms (FindLiveObjects: 0.269900 ms CreateObjectMapping: 0.170500 ms MarkObjects: 2.752300 ms DeleteObjects: 0.140300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005511 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.303 seconds -Domain Reload Profiling: - ReloadAssembly (1304ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1125ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (387ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4258. -Total: 3.558000 ms (FindLiveObjects: 0.356500 ms CreateObjectMapping: 0.198000 ms MarkObjects: 2.866400 ms DeleteObjects: 0.136200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006762 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.564 seconds -Domain Reload Profiling: - ReloadAssembly (1565ms) - BeginReloadAssembly (311ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (25ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (208ms) - EndReloadAssembly (1186ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (393ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (399ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (304ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.87 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4262. -Total: 3.720000 ms (FindLiveObjects: 0.543100 ms CreateObjectMapping: 0.325000 ms MarkObjects: 2.738000 ms DeleteObjects: 0.112700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005495 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.452 seconds -Domain Reload Profiling: - ReloadAssembly (1452ms) - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1270ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (430ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (405ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (315ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4266. -Total: 3.600700 ms (FindLiveObjects: 0.271100 ms CreateObjectMapping: 0.265400 ms MarkObjects: 2.920000 ms DeleteObjects: 0.143300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005289 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.369 seconds -Domain Reload Profiling: - ReloadAssembly (1370ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1186ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (399ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (353ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (255ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.8 MB. -System memory in use after: 141.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4270. -Total: 3.165000 ms (FindLiveObjects: 0.384400 ms CreateObjectMapping: 0.200500 ms MarkObjects: 2.431000 ms DeleteObjects: 0.148200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005680 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.504 seconds -Domain Reload Profiling: - ReloadAssembly (1504ms) - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1314ms) - LoadAssemblies (102ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (472ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (409ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (88ms) - ProcessInitializeOnLoadAttributes (296ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4274. -Total: 3.605700 ms (FindLiveObjects: 0.571000 ms CreateObjectMapping: 0.318500 ms MarkObjects: 2.600800 ms DeleteObjects: 0.114100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005228 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.410 seconds -Domain Reload Profiling: - ReloadAssembly (1410ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1204ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (403ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (58ms) - SetupLoadedEditorAssemblies (352ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4278. -Total: 3.817400 ms (FindLiveObjects: 0.317600 ms CreateObjectMapping: 0.220300 ms MarkObjects: 3.098400 ms DeleteObjects: 0.179900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005576 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.660 seconds -Domain Reload Profiling: - ReloadAssembly (1660ms) - BeginReloadAssembly (320ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (216ms) - EndReloadAssembly (1275ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (403ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (407ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (315ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4282. -Total: 3.123100 ms (FindLiveObjects: 0.253000 ms CreateObjectMapping: 0.150200 ms MarkObjects: 2.563700 ms DeleteObjects: 0.155200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005904 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.482 seconds -Domain Reload Profiling: - ReloadAssembly (1482ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1252ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (378ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (441ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (339ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4286. -Total: 2.970900 ms (FindLiveObjects: 0.274100 ms CreateObjectMapping: 0.207100 ms MarkObjects: 2.395700 ms DeleteObjects: 0.093200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006850 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.498 seconds -Domain Reload Profiling: - ReloadAssembly (1498ms) - BeginReloadAssembly (137ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1282ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (408ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (341ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4290. -Total: 3.643300 ms (FindLiveObjects: 0.289300 ms CreateObjectMapping: 0.174000 ms MarkObjects: 3.038100 ms DeleteObjects: 0.140900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006100 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.418 seconds -Domain Reload Profiling: - ReloadAssembly (1419ms) - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1208ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (444ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (339ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4294. -Total: 3.465300 ms (FindLiveObjects: 0.270600 ms CreateObjectMapping: 0.308700 ms MarkObjects: 2.742600 ms DeleteObjects: 0.142400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006192 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.649 seconds -Domain Reload Profiling: - ReloadAssembly (1649ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1444ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (409ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (434ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (330ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4298. -Total: 3.597000 ms (FindLiveObjects: 0.389700 ms CreateObjectMapping: 0.254500 ms MarkObjects: 2.846000 ms DeleteObjects: 0.105700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005883 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.398 seconds -Domain Reload Profiling: - ReloadAssembly (1399ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1200ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (393ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4302. -Total: 3.081000 ms (FindLiveObjects: 0.350900 ms CreateObjectMapping: 0.180200 ms MarkObjects: 2.411700 ms DeleteObjects: 0.137400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006614 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.542 seconds -Domain Reload Profiling: - ReloadAssembly (1542ms) - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1300ms) - LoadAssemblies (182ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (437ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (334ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4306. -Total: 3.463800 ms (FindLiveObjects: 0.284800 ms CreateObjectMapping: 0.191600 ms MarkObjects: 2.835700 ms DeleteObjects: 0.151000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006337 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.532 seconds -Domain Reload Profiling: - ReloadAssembly (1532ms) - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1344ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (394ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (362ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (266ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4310. -Total: 3.540700 ms (FindLiveObjects: 0.360300 ms CreateObjectMapping: 0.257200 ms MarkObjects: 2.708100 ms DeleteObjects: 0.214100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006471 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.295 seconds -Domain Reload Profiling: - ReloadAssembly (2296ms) - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1978ms) - LoadAssemblies (467ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (590ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (464ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (341ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4314. -Total: 3.991400 ms (FindLiveObjects: 0.493900 ms CreateObjectMapping: 0.273600 ms MarkObjects: 3.106400 ms DeleteObjects: 0.116200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005763 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.404 seconds -Domain Reload Profiling: - ReloadAssembly (1404ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1215ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (391ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (338ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 141.9 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4318. -Total: 4.913000 ms (FindLiveObjects: 0.275500 ms CreateObjectMapping: 0.184200 ms MarkObjects: 4.314700 ms DeleteObjects: 0.137200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005318 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.529 seconds -Domain Reload Profiling: - ReloadAssembly (1529ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1314ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (494ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (344ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4322. -Total: 3.759000 ms (FindLiveObjects: 0.279500 ms CreateObjectMapping: 0.158300 ms MarkObjects: 3.070300 ms DeleteObjects: 0.249900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005449 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.399 seconds -Domain Reload Profiling: - ReloadAssembly (1400ms) - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1207ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (382ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (337ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4326. -Total: 3.471800 ms (FindLiveObjects: 0.300200 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.859200 ms DeleteObjects: 0.140400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006144 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.605 seconds -Domain Reload Profiling: - ReloadAssembly (1605ms) - BeginReloadAssembly (186ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (1339ms) - LoadAssemblies (167ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (379ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (336ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4330. -Total: 3.480700 ms (FindLiveObjects: 0.308200 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.877200 ms DeleteObjects: 0.122900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006630 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.489 seconds -Domain Reload Profiling: - ReloadAssembly (1490ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1300ms) - LoadAssemblies (91ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (391ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (341ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4334. -Total: 3.767100 ms (FindLiveObjects: 0.279400 ms CreateObjectMapping: 0.179200 ms MarkObjects: 3.172000 ms DeleteObjects: 0.135200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005468 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.57 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.867 seconds -Domain Reload Profiling: - ReloadAssembly (1868ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1424ms) - LoadAssemblies (157ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (439ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (396ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (293ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (25ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4338. -Total: 3.888400 ms (FindLiveObjects: 0.279600 ms CreateObjectMapping: 0.210600 ms MarkObjects: 3.259400 ms DeleteObjects: 0.137800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007727 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.504 seconds -Domain Reload Profiling: - ReloadAssembly (1504ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1314ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (454ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (46ms) - SetupLoadedEditorAssemblies (379ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (287ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.0 MB. -System memory in use after: 142.1 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4342. -Total: 3.324200 ms (FindLiveObjects: 0.268100 ms CreateObjectMapping: 0.163600 ms MarkObjects: 2.748800 ms DeleteObjects: 0.142800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010977 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.574 seconds -Domain Reload Profiling: - ReloadAssembly (1575ms) - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1355ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (476ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (350ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (261ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.2 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4346. -Total: 3.175500 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.163600 ms MarkObjects: 2.596500 ms DeleteObjects: 0.129100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006156 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.842 seconds -Domain Reload Profiling: - ReloadAssembly (1843ms) - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1645ms) - LoadAssemblies (136ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (455ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (445ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (108ms) - ProcessInitializeOnLoadAttributes (295ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (27ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.2 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4350. -Total: 3.051800 ms (FindLiveObjects: 0.277100 ms CreateObjectMapping: 0.177800 ms MarkObjects: 2.483400 ms DeleteObjects: 0.112500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005831 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.422 seconds -Domain Reload Profiling: - ReloadAssembly (1422ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1232ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (368ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (359ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.00 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.2 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4354. -Total: 3.332500 ms (FindLiveObjects: 0.277300 ms CreateObjectMapping: 0.169900 ms MarkObjects: 2.763300 ms DeleteObjects: 0.120800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.008877 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.619 seconds -Domain Reload Profiling: - ReloadAssembly (1619ms) - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1440ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (514ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (343ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.2 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4358. -Total: 3.066500 ms (FindLiveObjects: 0.293000 ms CreateObjectMapping: 0.190600 ms MarkObjects: 2.472500 ms DeleteObjects: 0.109000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005469 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.471 seconds -Domain Reload Profiling: - ReloadAssembly (1471ms) - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (1274ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (398ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (339ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.67 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.2 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4362. -Total: 3.580300 ms (FindLiveObjects: 0.466400 ms CreateObjectMapping: 0.189000 ms MarkObjects: 2.779200 ms DeleteObjects: 0.144800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005925 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.597 seconds -Domain Reload Profiling: - ReloadAssembly (1598ms) - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - EndReloadAssembly (1397ms) - LoadAssemblies (99ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (381ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (365ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.1 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4366. -Total: 3.753700 ms (FindLiveObjects: 0.314200 ms CreateObjectMapping: 0.206600 ms MarkObjects: 3.125600 ms DeleteObjects: 0.106200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005447 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.605 seconds -Domain Reload Profiling: - ReloadAssembly (2605ms) - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (2328ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (832ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (59ms) - SetupLoadedEditorAssemblies (838ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (190ms) - ProcessInitializeOnLoadAttributes (624ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (33ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.03 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4370. -Total: 2.725600 ms (FindLiveObjects: 0.280100 ms CreateObjectMapping: 0.178700 ms MarkObjects: 2.169000 ms DeleteObjects: 0.096700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005294 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.554 seconds -Domain Reload Profiling: - ReloadAssembly (1554ms) - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1369ms) - LoadAssemblies (88ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (371ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (448ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (119ms) - ProcessInitializeOnLoadAttributes (306ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4374. -Total: 3.192100 ms (FindLiveObjects: 0.262900 ms CreateObjectMapping: 0.151800 ms MarkObjects: 2.645200 ms DeleteObjects: 0.131200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007234 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.83 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.813 seconds -Domain Reload Profiling: - ReloadAssembly (1813ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1601ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (491ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (474ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (164ms) - ProcessInitializeOnLoadAttributes (283ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4378. -Total: 3.343300 ms (FindLiveObjects: 0.291900 ms CreateObjectMapping: 0.173300 ms MarkObjects: 2.765400 ms DeleteObjects: 0.111800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005897 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.90 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.737 seconds -Domain Reload Profiling: - ReloadAssembly (1737ms) - BeginReloadAssembly (119ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1549ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (404ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (346ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4382. -Total: 3.688500 ms (FindLiveObjects: 0.478900 ms CreateObjectMapping: 0.212000 ms MarkObjects: 2.852500 ms DeleteObjects: 0.144100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005592 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.023 seconds -Domain Reload Profiling: - ReloadAssembly (2024ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1831ms) - LoadAssemblies (110ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (732ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (452ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (331ms) - ProcessInitializeOnLoadMethodAttributes (14ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4386. -Total: 2.995500 ms (FindLiveObjects: 0.289700 ms CreateObjectMapping: 0.180100 ms MarkObjects: 2.414300 ms DeleteObjects: 0.110200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005731 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.607 seconds -Domain Reload Profiling: - ReloadAssembly (1608ms) - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1421ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (388ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (339ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (248ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4390. -Total: 3.537500 ms (FindLiveObjects: 0.274100 ms CreateObjectMapping: 0.164000 ms MarkObjects: 2.964600 ms DeleteObjects: 0.133800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007923 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.619 seconds -Domain Reload Profiling: - ReloadAssembly (1619ms) - BeginReloadAssembly (230ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1327ms) - LoadAssemblies (189ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (427ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (342ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4394. -Total: 3.339100 ms (FindLiveObjects: 0.276200 ms CreateObjectMapping: 0.163400 ms MarkObjects: 2.758700 ms DeleteObjects: 0.140000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.009012 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.735 seconds -Domain Reload Profiling: - ReloadAssembly (1736ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1534ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (515ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (351ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (257ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (25ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4398. -Total: 4.092100 ms (FindLiveObjects: 0.290000 ms CreateObjectMapping: 0.186900 ms MarkObjects: 3.491000 ms DeleteObjects: 0.123100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005183 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.629 seconds -Domain Reload Profiling: - ReloadAssembly (1630ms) - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1451ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (401ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (334ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4402. -Total: 3.115400 ms (FindLiveObjects: 0.349100 ms CreateObjectMapping: 0.169700 ms MarkObjects: 2.453500 ms DeleteObjects: 0.142300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005271 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.979 seconds -Domain Reload Profiling: - ReloadAssembly (1980ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1761ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (393ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (400ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (305ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4406. -Total: 2.861900 ms (FindLiveObjects: 0.288600 ms CreateObjectMapping: 0.179900 ms MarkObjects: 2.250700 ms DeleteObjects: 0.141600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005398 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.769 seconds -Domain Reload Profiling: - ReloadAssembly (1769ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1587ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (386ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (55ms) - SetupLoadedEditorAssemblies (358ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.2 MB. -System memory in use after: 142.3 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4410. -Total: 4.280400 ms (FindLiveObjects: 0.330600 ms CreateObjectMapping: 0.445000 ms MarkObjects: 3.362000 ms DeleteObjects: 0.141700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005533 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.524 seconds -Domain Reload Profiling: - ReloadAssembly (1524ms) - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1345ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (443ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (333ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.94 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4414. -Total: 3.686100 ms (FindLiveObjects: 0.364100 ms CreateObjectMapping: 0.239900 ms MarkObjects: 2.934300 ms DeleteObjects: 0.146500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005555 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.750 seconds -Domain Reload Profiling: - ReloadAssembly (1750ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (72ms) - EndReloadAssembly (1527ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (422ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (355ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (260ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.96 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4418. -Total: 4.608300 ms (FindLiveObjects: 0.398800 ms CreateObjectMapping: 0.288600 ms MarkObjects: 3.781900 ms DeleteObjects: 0.137600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005950 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.568 seconds -Domain Reload Profiling: - ReloadAssembly (1569ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1372ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (392ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (346ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4422. -Total: 2.967100 ms (FindLiveObjects: 0.274200 ms CreateObjectMapping: 0.161000 ms MarkObjects: 2.391500 ms DeleteObjects: 0.139500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005377 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.21 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.760 seconds -Domain Reload Profiling: - ReloadAssembly (1760ms) - BeginReloadAssembly (150ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - EndReloadAssembly (1544ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (444ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (65ms) - SetupLoadedEditorAssemblies (363ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (264ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4426. -Total: 3.200300 ms (FindLiveObjects: 0.298300 ms CreateObjectMapping: 0.186600 ms MarkObjects: 2.576700 ms DeleteObjects: 0.137600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006246 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.502 seconds -Domain Reload Profiling: - ReloadAssembly (1502ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1308ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (385ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (337ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4430. -Total: 3.446600 ms (FindLiveObjects: 0.313000 ms CreateObjectMapping: 0.172900 ms MarkObjects: 2.693000 ms DeleteObjects: 0.266700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005875 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.650 seconds -Domain Reload Profiling: - ReloadAssembly (1651ms) - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1457ms) - LoadAssemblies (101ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (377ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (450ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (345ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.4 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4434. -Total: 3.375300 ms (FindLiveObjects: 0.280800 ms CreateObjectMapping: 0.171300 ms MarkObjects: 2.783600 ms DeleteObjects: 0.138900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006722 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.563 seconds -Domain Reload Profiling: - ReloadAssembly (1564ms) - BeginReloadAssembly (106ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1390ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (365ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (342ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (14ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.3 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4438. -Total: 3.052500 ms (FindLiveObjects: 0.302500 ms CreateObjectMapping: 0.176100 ms MarkObjects: 2.424800 ms DeleteObjects: 0.148400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006186 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.755 seconds -Domain Reload Profiling: - ReloadAssembly (1755ms) - BeginReloadAssembly (136ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1524ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (483ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (408ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (311ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4442. -Total: 3.461400 ms (FindLiveObjects: 0.312800 ms CreateObjectMapping: 0.246000 ms MarkObjects: 2.788600 ms DeleteObjects: 0.113000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005953 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.731 seconds -Domain Reload Profiling: - ReloadAssembly (1731ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1517ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (490ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (355ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4446. -Total: 3.850400 ms (FindLiveObjects: 0.364300 ms CreateObjectMapping: 0.276300 ms MarkObjects: 3.076300 ms DeleteObjects: 0.132400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006815 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.704 seconds -Domain Reload Profiling: - ReloadAssembly (1704ms) - BeginReloadAssembly (140ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (1430ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (403ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (56ms) - SetupLoadedEditorAssemblies (384ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (286ms) ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4450. -Total: 3.441600 ms (FindLiveObjects: 0.356500 ms CreateObjectMapping: 0.171800 ms MarkObjects: 2.762100 ms DeleteObjects: 0.150300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005735 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.765 seconds -Domain Reload Profiling: - ReloadAssembly (1765ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1558ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (460ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (361ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4454. -Total: 2.735700 ms (FindLiveObjects: 0.296800 ms CreateObjectMapping: 0.182700 ms MarkObjects: 2.159100 ms DeleteObjects: 0.096300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005804 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.520 seconds -Domain Reload Profiling: - ReloadAssembly (1520ms) - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1328ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (382ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (328ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4458. -Total: 3.571600 ms (FindLiveObjects: 0.397700 ms CreateObjectMapping: 0.329000 ms MarkObjects: 2.700700 ms DeleteObjects: 0.143200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005738 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.844 seconds -Domain Reload Profiling: - ReloadAssembly (1845ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1627ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (453ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (417ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (324ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4462. -Total: 3.159900 ms (FindLiveObjects: 0.310600 ms CreateObjectMapping: 0.189400 ms MarkObjects: 2.555100 ms DeleteObjects: 0.103800 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4198. +Total: 3.550500 ms (FindLiveObjects: 0.349200 ms CreateObjectMapping: 0.269500 ms MarkObjects: 2.801500 ms DeleteObjects: 0.129500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4747,591 +1279,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.006180 seconds. +Registered in 0.004428 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.548 seconds -Domain Reload Profiling: - ReloadAssembly (1548ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1351ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (382ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (331ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4466. -Total: 3.554000 ms (FindLiveObjects: 0.305700 ms CreateObjectMapping: 0.212800 ms MarkObjects: 2.894200 ms DeleteObjects: 0.140400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005715 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.644 seconds -Domain Reload Profiling: - ReloadAssembly (1644ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1449ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (405ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (340ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (251ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4470. -Total: 3.511200 ms (FindLiveObjects: 0.284400 ms CreateObjectMapping: 0.179800 ms MarkObjects: 2.886300 ms DeleteObjects: 0.159800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005515 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.759 seconds -Domain Reload Profiling: - ReloadAssembly (1760ms) - BeginReloadAssembly (122ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1569ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (531ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (350ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.5 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4474. -Total: 3.914400 ms (FindLiveObjects: 0.296600 ms CreateObjectMapping: 0.295100 ms MarkObjects: 3.200500 ms DeleteObjects: 0.121000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005869 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.040 seconds -Domain Reload Profiling: - ReloadAssembly (2041ms) - BeginReloadAssembly (146ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1812ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (435ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (441ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (98ms) - ProcessInitializeOnLoadAttributes (314ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (30ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4478. -Total: 3.194600 ms (FindLiveObjects: 0.347400 ms CreateObjectMapping: 0.256000 ms MarkObjects: 2.480200 ms DeleteObjects: 0.109700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006038 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.760 seconds -Domain Reload Profiling: - ReloadAssembly (1760ms) - BeginReloadAssembly (137ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1539ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (493ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (355ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (260ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.4 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4482. -Total: 4.004300 ms (FindLiveObjects: 0.422800 ms CreateObjectMapping: 0.528300 ms MarkObjects: 2.936600 ms DeleteObjects: 0.115500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005627 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.804 seconds -Domain Reload Profiling: - ReloadAssembly (1804ms) - BeginReloadAssembly (166ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - EndReloadAssembly (1574ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (446ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (368ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4486. -Total: 3.263500 ms (FindLiveObjects: 0.286400 ms CreateObjectMapping: 0.174100 ms MarkObjects: 2.639300 ms DeleteObjects: 0.162900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007034 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.757 seconds -Domain Reload Profiling: - ReloadAssembly (1758ms) - BeginReloadAssembly (134ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1548ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (456ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (352ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (257ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4490. -Total: 4.008500 ms (FindLiveObjects: 0.684100 ms CreateObjectMapping: 0.275600 ms MarkObjects: 2.912800 ms DeleteObjects: 0.135000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006393 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.11 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.791 seconds -Domain Reload Profiling: - ReloadAssembly (1791ms) - BeginReloadAssembly (206ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (19ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (1512ms) - LoadAssemblies (120ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (411ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (409ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (118ms) - ProcessInitializeOnLoadAttributes (265ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4494. -Total: 3.134400 ms (FindLiveObjects: 0.302800 ms CreateObjectMapping: 0.179600 ms MarkObjects: 2.543200 ms DeleteObjects: 0.107700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010083 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.87 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.557 seconds +- Completed reload, in 1.364 seconds Domain Reload Profiling: - ReloadAssembly (2558ms) - BeginReloadAssembly (337ms) + ReloadAssembly (1364ms) + BeginReloadAssembly (135ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (37ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (100ms) - EndReloadAssembly (2121ms) - LoadAssemblies (168ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1169ms) + LoadAssemblies (97ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (584ms) + SetupTypeCache (404ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (368ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (367ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (259ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (16ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4498. -Total: 3.494400 ms (FindLiveObjects: 0.301100 ms CreateObjectMapping: 0.191000 ms MarkObjects: 2.851100 ms DeleteObjects: 0.150300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005619 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.570 seconds -Domain Reload Profiling: - ReloadAssembly (1571ms) - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1386ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (383ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (330ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4502. -Total: 3.158000 ms (FindLiveObjects: 0.287300 ms CreateObjectMapping: 0.171100 ms MarkObjects: 2.571900 ms DeleteObjects: 0.126800 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4202. +Total: 3.071700 ms (FindLiveObjects: 0.266400 ms CreateObjectMapping: 0.179700 ms MarkObjects: 2.460100 ms DeleteObjects: 0.164700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5347,51 +1339,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.007467 seconds. +Registered in 0.005317 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.584 seconds +- Completed reload, in 1.316 seconds Domain Reload Profiling: - ReloadAssembly (1584ms) + ReloadAssembly (1317ms) BeginReloadAssembly (130ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (9ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1388ms) - LoadAssemblies (101ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1121ms) + LoadAssemblies (99ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) + SetupTypeCache (407ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (332ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (331ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (2ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (11ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4506. -Total: 3.341200 ms (FindLiveObjects: 0.279000 ms CreateObjectMapping: 0.162300 ms MarkObjects: 2.757000 ms DeleteObjects: 0.142000 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4206. +Total: 3.207900 ms (FindLiveObjects: 0.291300 ms CreateObjectMapping: 0.203400 ms MarkObjects: 2.601200 ms DeleteObjects: 0.110800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5407,471 +1399,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005747 seconds. +Registered in 0.004256 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.789 seconds +- Completed reload, in 1.447 seconds Domain Reload Profiling: - ReloadAssembly (1790ms) - BeginReloadAssembly (129ms) + ReloadAssembly (1448ms) + BeginReloadAssembly (185ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (51ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (41ms) - EndReloadAssembly (1590ms) - LoadAssemblies (91ms) + EndReloadAssembly (1197ms) + LoadAssemblies (98ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (473ms) + SetupTypeCache (415ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (362ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (273ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4510. -Total: 5.641300 ms (FindLiveObjects: 0.324500 ms CreateObjectMapping: 0.474900 ms MarkObjects: 4.732000 ms DeleteObjects: 0.108700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005353 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.844 seconds -Domain Reload Profiling: - ReloadAssembly (1845ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1653ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (383ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (350ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (84ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4514. -Total: 3.765000 ms (FindLiveObjects: 0.305900 ms CreateObjectMapping: 0.180500 ms MarkObjects: 3.026300 ms DeleteObjects: 0.237100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007795 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.745 seconds -Domain Reload Profiling: - ReloadAssembly (1745ms) - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (61ms) - EndReloadAssembly (1503ms) - LoadAssemblies (179ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (394ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.92 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.6 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4518. -Total: 3.605500 ms (FindLiveObjects: 0.302600 ms CreateObjectMapping: 0.192000 ms MarkObjects: 2.948600 ms DeleteObjects: 0.161100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010557 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.913 seconds -Domain Reload Profiling: - ReloadAssembly (1913ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1722ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (428ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) + RebuildScriptCaches (56ms) SetupLoadedEditorAssemblies (338ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) + AwakeInstancesAfterBackupRestoration (14ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.93 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.5 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4522. -Total: 7.077900 ms (FindLiveObjects: 0.708700 ms CreateObjectMapping: 0.843400 ms MarkObjects: 5.374900 ms DeleteObjects: 0.133000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005537 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.953 seconds -Domain Reload Profiling: - ReloadAssembly (1953ms) - BeginReloadAssembly (181ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (79ms) - EndReloadAssembly (1708ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (456ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (52ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (79ms) - ProcessInitializeOnLoadAttributes (279ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4526. -Total: 2.918600 ms (FindLiveObjects: 0.302000 ms CreateObjectMapping: 0.188300 ms MarkObjects: 2.322600 ms DeleteObjects: 0.104600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005711 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.915 seconds -Domain Reload Profiling: - ReloadAssembly (1915ms) - BeginReloadAssembly (125ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1721ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (390ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4530. -Total: 3.614000 ms (FindLiveObjects: 0.300100 ms CreateObjectMapping: 0.181400 ms MarkObjects: 3.003000 ms DeleteObjects: 0.128400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005257 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.257 seconds -Domain Reload Profiling: - ReloadAssembly (2257ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (2021ms) - LoadAssemblies (250ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (401ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (471ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (356ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (18ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.85 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4534. -Total: 2.977000 ms (FindLiveObjects: 0.344400 ms CreateObjectMapping: 0.241100 ms MarkObjects: 2.282100 ms DeleteObjects: 0.108500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007331 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.90 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.857 seconds -Domain Reload Profiling: - ReloadAssembly (1858ms) - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1659ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (445ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (280ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4538. -Total: 4.037500 ms (FindLiveObjects: 0.335900 ms CreateObjectMapping: 0.187100 ms MarkObjects: 3.359300 ms DeleteObjects: 0.153800 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4210. +Total: 3.536200 ms (FindLiveObjects: 0.319900 ms CreateObjectMapping: 0.228000 ms MarkObjects: 2.870800 ms DeleteObjects: 0.115700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -5887,291 +1459,51 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005470 seconds. +Registered in 0.004541 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.709 seconds +- Completed reload, in 1.282 seconds Domain Reload Profiling: - ReloadAssembly (1710ms) - BeginReloadAssembly (123ms) + ReloadAssembly (1282ms) + BeginReloadAssembly (115ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1523ms) - LoadAssemblies (91ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1097ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (374ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (341ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4542. -Total: 3.592200 ms (FindLiveObjects: 0.371100 ms CreateObjectMapping: 0.258200 ms MarkObjects: 2.835600 ms DeleteObjects: 0.125800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005689 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.89 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.626 seconds -Domain Reload Profiling: - ReloadAssembly (1628ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1441ms) - LoadAssemblies (90ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (380ms) + SetupTypeCache (381ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4546. -Total: 3.512200 ms (FindLiveObjects: 0.360800 ms CreateObjectMapping: 0.224500 ms MarkObjects: 2.780200 ms DeleteObjects: 0.145800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.008380 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.973 seconds -Domain Reload Profiling: - ReloadAssembly (1974ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1751ms) - LoadAssemblies (122ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (443ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (360ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (270ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.18 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4550. -Total: 4.428500 ms (FindLiveObjects: 0.311000 ms CreateObjectMapping: 0.202700 ms MarkObjects: 3.794400 ms DeleteObjects: 0.119000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006544 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.621 seconds -Domain Reload Profiling: - ReloadAssembly (1621ms) - BeginReloadAssembly (119ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1439ms) - LoadAssemblies (89ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (374ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (329ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.86 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4554. -Total: 3.513000 ms (FindLiveObjects: 0.302600 ms CreateObjectMapping: 0.170900 ms MarkObjects: 2.914400 ms DeleteObjects: 0.124100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005353 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.813 seconds -Domain Reload Profiling: - ReloadAssembly (1813ms) - BeginReloadAssembly (119ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1631ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (456ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (423ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (334ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (324ms) + ProcessInitializeOnLoadAttributes (236ms) ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) + AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.02 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 1.01 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4558. -Total: 20.096900 ms (FindLiveObjects: 0.280000 ms CreateObjectMapping: 0.158400 ms MarkObjects: 19.508600 ms DeleteObjects: 0.148300 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4214. +Total: 8.483300 ms (FindLiveObjects: 0.792600 ms CreateObjectMapping: 0.715200 ms MarkObjects: 6.862500 ms DeleteObjects: 0.111200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -6187,171 +1519,171 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005486 seconds. +Registered in 0.004307 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.341 seconds +Domain Reload Profiling: + ReloadAssembly (1342ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1147ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4218. +Total: 3.203600 ms (FindLiveObjects: 0.308400 ms CreateObjectMapping: 0.210100 ms MarkObjects: 2.553100 ms DeleteObjects: 0.130600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004936 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.811 seconds +- Completed reload, in 1.212 seconds Domain Reload Profiling: - ReloadAssembly (1811ms) - BeginReloadAssembly (124ms) + ReloadAssembly (1212ms) + BeginReloadAssembly (119ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1623ms) - LoadAssemblies (92ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1034ms) + LoadAssemblies (90ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (386ms) + SetupTypeCache (360ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (60ms) - SetupLoadedEditorAssemblies (366ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (315ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (24ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4222. +Total: 3.276800 ms (FindLiveObjects: 0.290300 ms CreateObjectMapping: 0.174700 ms MarkObjects: 2.664700 ms DeleteObjects: 0.146300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005669 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.01 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.339 seconds +Domain Reload Profiling: + ReloadAssembly (1340ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1128ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (75ms) - ProcessInitializeOnLoadAttributes (251ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (243ms) ProcessInitializeOnLoadMethodAttributes (9ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4562. -Total: 3.078600 ms (FindLiveObjects: 0.287200 ms CreateObjectMapping: 0.164500 ms MarkObjects: 2.503200 ms DeleteObjects: 0.122800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005559 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.889 seconds -Domain Reload Profiling: - ReloadAssembly (1890ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1671ms) - LoadAssemblies (107ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (393ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (398ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (286ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 2.60 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.7 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4566. -Total: 3.504200 ms (FindLiveObjects: 0.325200 ms CreateObjectMapping: 0.334000 ms MarkObjects: 2.736400 ms DeleteObjects: 0.107300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006923 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.904 seconds -Domain Reload Profiling: - ReloadAssembly (1904ms) - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - EndReloadAssembly (1675ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (461ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (362ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (270ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) + AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.6 MB. -System memory in use after: 142.8 MB. +System memory in use before: 136.8 MB. +System memory in use after: 136.9 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4570. -Total: 3.606000 ms (FindLiveObjects: 0.342400 ms CreateObjectMapping: 0.160200 ms MarkObjects: 2.969100 ms DeleteObjects: 0.133300 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4226. +Total: 3.297700 ms (FindLiveObjects: 0.261700 ms CreateObjectMapping: 0.170700 ms MarkObjects: 2.768500 ms DeleteObjects: 0.095900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -6365,173 +1697,59 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005645 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.670 seconds -Domain Reload Profiling: - ReloadAssembly (1671ms) - BeginReloadAssembly (128ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1479ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (373ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (337ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (250ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4574. -Total: 3.613500 ms (FindLiveObjects: 0.305400 ms CreateObjectMapping: 0.259700 ms MarkObjects: 2.903100 ms DeleteObjects: 0.144600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 1214.637172 seconds. + path: Assets/Graphics/Characters/whiteKing.png + artifactKey: Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Characters/whiteKing.png using Guid(d5621a225fbee1345a5c900f375fc159) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c6c316ab01f9e19626ac3fa1e6b03a5') in 0.157960 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.008383 seconds. +Registered in 0.007858 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 1.03 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.928 seconds +- Completed reload, in 1.469 seconds Domain Reload Profiling: - ReloadAssembly (1928ms) - BeginReloadAssembly (129ms) + ReloadAssembly (1469ms) + BeginReloadAssembly (120ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1736ms) - LoadAssemblies (88ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1281ms) + LoadAssemblies (110ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (559ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (352ms) + SetupTypeCache (388ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (400ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4578. -Total: 3.034300 ms (FindLiveObjects: 0.339900 ms CreateObjectMapping: 0.190500 ms MarkObjects: 2.375000 ms DeleteObjects: 0.127900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006010 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.028 seconds -Domain Reload Profiling: - ReloadAssembly (2029ms) - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1831ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (497ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (136ms) - SetupLoadedEditorAssemblies (347ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (9ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (10ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (16ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.95 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. +Unloading 3677 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.4 MB. +System memory in use after: 141.5 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4582. -Total: 3.601100 ms (FindLiveObjects: 0.306500 ms CreateObjectMapping: 0.197400 ms MarkObjects: 2.987700 ms DeleteObjects: 0.108300 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4251. +Total: 3.667700 ms (FindLiveObjects: 0.263200 ms CreateObjectMapping: 0.164500 ms MarkObjects: 2.892700 ms DeleteObjects: 0.346400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -6547,1053 +1765,93 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.008727 seconds. +Registered in 0.004859 seconds. Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. +Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.899 seconds +- Completed reload, in 1.496 seconds Domain Reload Profiling: - ReloadAssembly (1899ms) - BeginReloadAssembly (132ms) + ReloadAssembly (1497ms) + BeginReloadAssembly (133ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1701ms) - LoadAssemblies (95ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1277ms) + LoadAssemblies (112ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (483ms) + SetupTypeCache (442ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.91 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.4 MB. +System memory in use after: 141.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4255. +Total: 3.908000 ms (FindLiveObjects: 0.302100 ms CreateObjectMapping: 0.273300 ms MarkObjects: 3.200200 ms DeleteObjects: 0.130900 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004298 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.298 seconds +Domain Reload Profiling: + ReloadAssembly (1298ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1118ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (378ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (48ms) SetupLoadedEditorAssemblies (326ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (237ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4586. -Total: 3.593600 ms (FindLiveObjects: 0.336800 ms CreateObjectMapping: 0.162900 ms MarkObjects: 2.949400 ms DeleteObjects: 0.143500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007379 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 3.86 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.459 seconds -Domain Reload Profiling: - ReloadAssembly (2459ms) - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (2274ms) - LoadAssemblies (94ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (601ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (90ms) - SetupLoadedEditorAssemblies (393ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (268ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.79 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4590. -Total: 19.292800 ms (FindLiveObjects: 0.452600 ms CreateObjectMapping: 4.048900 ms MarkObjects: 13.859700 ms DeleteObjects: 0.929700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005624 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.81 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.937 seconds -Domain Reload Profiling: - ReloadAssembly (1938ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (1683ms) - LoadAssemblies (127ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (389ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (53ms) - SetupLoadedEditorAssemblies (345ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (248ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4594. -Total: 3.682000 ms (FindLiveObjects: 0.410200 ms CreateObjectMapping: 0.292700 ms MarkObjects: 2.865500 ms DeleteObjects: 0.112500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005604 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.932 seconds -Domain Reload Profiling: - ReloadAssembly (1933ms) - BeginReloadAssembly (132ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1737ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (389ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (56ms) - SetupLoadedEditorAssemblies (452ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (353ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4598. -Total: 3.442300 ms (FindLiveObjects: 0.311100 ms CreateObjectMapping: 0.185400 ms MarkObjects: 2.784400 ms DeleteObjects: 0.160700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005436 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.008 seconds -Domain Reload Profiling: - ReloadAssembly (2009ms) - BeginReloadAssembly (126ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1812ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (452ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (414ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (319ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4602. -Total: 3.304100 ms (FindLiveObjects: 0.326700 ms CreateObjectMapping: 0.179200 ms MarkObjects: 2.625000 ms DeleteObjects: 0.157300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006194 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.877 seconds -Domain Reload Profiling: - ReloadAssembly (1877ms) - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1698ms) - LoadAssemblies (91ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (370ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (97ms) - SetupLoadedEditorAssemblies (388ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (264ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4606. -Total: 3.235100 ms (FindLiveObjects: 0.301800 ms CreateObjectMapping: 0.179200 ms MarkObjects: 2.611000 ms DeleteObjects: 0.142200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005702 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.937 seconds -Domain Reload Profiling: - ReloadAssembly (1937ms) - BeginReloadAssembly (178ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (1697ms) - LoadAssemblies (167ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (394ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (428ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (316ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.8 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4610. -Total: 3.242700 ms (FindLiveObjects: 0.311900 ms CreateObjectMapping: 0.178300 ms MarkObjects: 2.605300 ms DeleteObjects: 0.146100 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005831 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.804 seconds -Domain Reload Profiling: - ReloadAssembly (1805ms) - BeginReloadAssembly (112ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1632ms) - LoadAssemblies (89ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (387ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (285ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.7 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4614. -Total: 3.383500 ms (FindLiveObjects: 0.377900 ms CreateObjectMapping: 0.234900 ms MarkObjects: 2.629000 ms DeleteObjects: 0.140300 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005819 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.940 seconds -Domain Reload Profiling: - ReloadAssembly (1941ms) - BeginReloadAssembly (117ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1760ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (452ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (74ms) - ProcessInitializeOnLoadAttributes (276ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4618. -Total: 3.366700 ms (FindLiveObjects: 0.311400 ms CreateObjectMapping: 0.187700 ms MarkObjects: 2.721200 ms DeleteObjects: 0.145500 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005382 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.92 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.855 seconds -Domain Reload Profiling: - ReloadAssembly (1855ms) - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1664ms) - LoadAssemblies (96ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (375ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (72ms) - SetupLoadedEditorAssemblies (413ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (312ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4622. -Total: 3.474000 ms (FindLiveObjects: 0.293500 ms CreateObjectMapping: 0.171800 ms MarkObjects: 2.831500 ms DeleteObjects: 0.176200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005589 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.112 seconds -Domain Reload Profiling: - ReloadAssembly (2112ms) - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - EndReloadAssembly (1841ms) - LoadAssemblies (133ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (552ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (50ms) - SetupLoadedEditorAssemblies (330ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4626. -Total: 3.148800 ms (FindLiveObjects: 0.313400 ms CreateObjectMapping: 0.194200 ms MarkObjects: 2.529700 ms DeleteObjects: 0.110400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005600 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.88 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.887 seconds -Domain Reload Profiling: - ReloadAssembly (1887ms) - BeginReloadAssembly (127ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1693ms) - LoadAssemblies (98ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (384ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (330ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4630. -Total: 3.200400 ms (FindLiveObjects: 0.301100 ms CreateObjectMapping: 0.175400 ms MarkObjects: 2.622200 ms DeleteObjects: 0.101000 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005386 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.059 seconds -Domain Reload Profiling: - ReloadAssembly (2060ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1867ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (382ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (70ms) - SetupLoadedEditorAssemblies (370ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (83ms) - ProcessInitializeOnLoadAttributes (265ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.52 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4634. -Total: 2.878200 ms (FindLiveObjects: 0.313200 ms CreateObjectMapping: 0.181800 ms MarkObjects: 2.278200 ms DeleteObjects: 0.104200 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005680 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.724 seconds -Domain Reload Profiling: - ReloadAssembly (1725ms) - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1546ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (376ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (324ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4638. -Total: 3.284500 ms (FindLiveObjects: 0.308200 ms CreateObjectMapping: 0.175000 ms MarkObjects: 2.666800 ms DeleteObjects: 0.133700 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006382 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.903 seconds -Domain Reload Profiling: - ReloadAssembly (1904ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1676ms) - LoadAssemblies (130ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (459ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (321ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.38 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4642. -Total: 3.797400 ms (FindLiveObjects: 0.337700 ms CreateObjectMapping: 0.277600 ms MarkObjects: 3.046300 ms DeleteObjects: 0.134800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007163 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.02 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.998 seconds -Domain Reload Profiling: - ReloadAssembly (1999ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1788ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (387ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (336ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.71 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4646. -Total: 3.533400 ms (FindLiveObjects: 0.285900 ms CreateObjectMapping: 0.159800 ms MarkObjects: 2.878500 ms DeleteObjects: 0.208400 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005438 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.955 seconds -Domain Reload Profiling: - ReloadAssembly (1956ms) - BeginReloadAssembly (131ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1760ms) - LoadAssemblies (100ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (495ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (328ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4650. -Total: 3.415900 ms (FindLiveObjects: 0.301600 ms CreateObjectMapping: 0.168700 ms MarkObjects: 2.796800 ms DeleteObjects: 0.147600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.015609 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.82 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.872 seconds -Domain Reload Profiling: - ReloadAssembly (1872ms) - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - EndReloadAssembly (1687ms) - LoadAssemblies (89ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (367ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (47ms) - SetupLoadedEditorAssemblies (325ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) BeforeProcessingInitializeOnLoad (67ms) ProcessInitializeOnLoadAttributes (238ms) @@ -7601,17 +1859,137 @@ Domain Reload Profiling: AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.4 MB. +System memory in use after: 141.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4259. +Total: 3.538700 ms (FindLiveObjects: 0.415900 ms CreateObjectMapping: 0.277000 ms MarkObjects: 2.734900 ms DeleteObjects: 0.109600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004636 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.237 seconds +Domain Reload Profiling: + ReloadAssembly (1237ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1051ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (350ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.77 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 141.4 MB. +System memory in use after: 141.5 MB. + +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4263. +Total: 3.655000 ms (FindLiveObjects: 0.414000 ms CreateObjectMapping: 0.182100 ms MarkObjects: 2.917600 ms DeleteObjects: 0.140600 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004455 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image F:\Gihub Projects\Chess Unity\Chess-Unity\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 4 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.475 seconds +Domain Reload Profiling: + ReloadAssembly (1475ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (1291ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (439ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (386ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (288ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.73 ms, found 4 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 142.9 MB. +System memory in use before: 141.4 MB. +System memory in use after: 141.5 MB. -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4654. -Total: 3.086000 ms (FindLiveObjects: 0.296400 ms CreateObjectMapping: 0.166900 ms MarkObjects: 2.481500 ms DeleteObjects: 0.140400 ms) +Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4267. +Total: 3.200200 ms (FindLiveObjects: 0.280700 ms CreateObjectMapping: 0.248300 ms MarkObjects: 2.522900 ms DeleteObjects: 0.146700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -7624,260 +2002,3 @@ AssetImportParameters requested are different than current active one (requested custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.009752 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 1.13 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.908 seconds -Domain Reload Profiling: - ReloadAssembly (1909ms) - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1719ms) - LoadAssemblies (93ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (450ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (361ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (79ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (14ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.70 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3676 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 142.8 MB. -System memory in use after: 143.0 MB. - -Unloading 25 unused Assets to reduce memory usage. Loaded Objects now: 4658. -Total: 3.421800 ms (FindLiveObjects: 0.451300 ms CreateObjectMapping: 0.262300 ms MarkObjects: 2.561400 ms DeleteObjects: 0.145800 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-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005330 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image C:\Users\braus\Desktop\Chess Recode\Library\PackageCache\com.unity.visualscripting@1.6.1\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.72 ms, found 4 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.949 seconds -Domain Reload Profiling: - ReloadAssembly (1949ms) - BeginReloadAssembly (123ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (1765ms) - LoadAssemblies (90ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (371ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (333ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (242ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Callback registration failed. Increase kMaxCallback. - -Fatal Error! Callback registration failed. Increase kMaxCallback. - -Crash!!! -SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/Mono;.;C:\Users\braus\Desktop\Chess Recode;C:\Users\braus\Desktop\Chess Recode\Library\BurstCache\JIT;C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor;C:\WINDOWS;C:\WINDOWS\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'braus' -OS-Version: 10.0.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Unity.exe:Unity.exe (00007FF656970000), size: 81674240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2021.1.13.12440 -C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (00007FFDDE020000), size: 2125824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFDDCD20000), size: 774144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFDDBA10000), size: 3620864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.132 -C:\WINDOWS\System32\CRYPT32.dll:CRYPT32.dll (00007FFDDB5C0000), size: 1449984 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\System32\ucrtbase.dll:ucrtbase.dll (00007FFDDB730000), size: 1118208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\USER32.dll:USER32.dll (00007FFDDCB00000), size: 1753088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.37 -C:\WINDOWS\System32\win32u.dll:win32u.dll (00007FFDDBE00000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 -C:\WINDOWS\System32\GDI32.dll:GDI32.dll (00007FFDDDAC0000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\gdi32full.dll:gdi32full.dll (00007FFDDB8F0000), size: 1122304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\System32\msvcp_win.dll:msvcp_win.dll (00007FFDDB850000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFDDC840000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 -C:\WINDOWS\System32\msvcrt.dll:msvcrt.dll (00007FFDDD9F0000), size: 667648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFD636E0000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 -C:\WINDOWS\System32\sechost.dll:sechost.dll (00007FFDDD950000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\RPCRT4.dll:RPCRT4.dll (00007FFDDC460000), size: 1183744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\SHELL32.dll:SHELL32.dll (00007FFDDD1A0000), size: 8032256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFDDCED0000), size: 380928 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\ole32.dll:ole32.dll (00007FFDDC6A0000), size: 1679360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\combase.dll:combase.dll (00007FFDDBF50000), size: 3637248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\System32\IMM32.dll:IMM32.dll (00007FFDDC8F0000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFDDDB70000), size: 4632576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFD5FFA0000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' -C:\WINDOWS\System32\WS2_32.dll:WS2_32.dll (00007FFDDCCB0000), size: 454656 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFDDC930000), size: 876544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFDB0090000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' -C:\WINDOWS\System32\WLDAP32.dll:WLDAP32.dll (00007FFDDCAA0000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\WINTRUST.dll:WINTRUST.dll (00007FFDDBD90000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.194 -C:\WINDOWS\System32\Normaliz.dll:Normaliz.dll (00007FFDDC2D0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6414336 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\etccompress.dll:etccompress.dll (00007FFD63200000), size: 5066752 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFDA9540000), size: 1744896 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFDCFDD0000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 -C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFDACE20000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 -C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFDDA260000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFDD61C0000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (00007FFDBBD30000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 -C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (00007FFDD6A30000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\bcrypt.dll:bcrypt.dll (00007FFDDAEF0000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\HID.DLL:HID.DLL (00007FFDD9F30000), size: 57344 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FFD7EA20000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFD62970000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\tbb.dll:tbb.dll (00007FFDB36A0000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 -C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (00007FFDD5910000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFDC76D0000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\WINDOWS\SYSTEM32\MSWSOCK.dll:MSWSOCK.dll (00007FFDDAB30000), size: 421888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFDC76F0000), size: 577536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\WINDOWS\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFDACD70000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFDB90C0000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 -C:\WINDOWS\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFD7E520000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 -C:\WINDOWS\SYSTEM32\Secur32.dll:Secur32.dll (00007FFDCCA90000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFDC76C0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\WINDOWS\SYSTEM32\dxcore.dll:dxcore.dll (00007FFDD8E80000), size: 229376 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFDDA940000), size: 262144 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FFDCF030000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL.dll:OpenRL.dll (000002294FF70000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 -C:\WINDOWS\SYSTEM32\MSVCP100.dll:MSVCP100.dll (0000000070170000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 -C:\WINDOWS\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000070090000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.325 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\embree.dll:embree.dll (00007FFD5EFB0000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 -C:\WINDOWS\SYSTEM32\cfgmgr32.DLL:cfgmgr32.DLL (00007FFDDB200000), size: 311296 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (0000022950BC0000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 -C:\WINDOWS\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFDDADD0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFDDA720000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFDDBE30000), size: 524288 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (00007FFDD8BD0000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\System32\shcore.dll:shcore.dll (00007FFDDCDE0000), size: 958464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFDD96C0000), size: 8790016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\wintypes.dll:wintypes.dll (00007FFDD9550000), size: 1466368 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 -C:\WINDOWS\SYSTEM32\profapi.dll:profapi.dll (00007FFDDB430000), size: 135168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\clbcatq.dll:clbcatq.dll (00007FFDDCF30000), size: 716800 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 -C:\WINDOWS\System32\netprofm.dll:netprofm.dll (00007FFDD7970000), size: 462848 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\WINDOWS\System32\NSI.dll:NSI.dll (00007FFDDC690000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFDD6320000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFDD6780000), size: 122880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFDDA290000), size: 946176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\npmproxy.dll:npmproxy.dll (00007FFDD3DE0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFDD4080000), size: 528384 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFDD3FF0000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFD5C690000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' -C:\WINDOWS\SYSTEM32\d3d11.dll:d3d11.dll (00007FFDD4A00000), size: 2621440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\dxgi.dll:dxgi.dll (00007FFDD8D40000), size: 995328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll:directxdatabasehelper.dll (00007FFDD5FC0000), size: 278528 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFDD8F00000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvldumdx.dll:nvldumdx.dll (00007FFDD2060000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 -C:\WINDOWS\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFDD5010000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\drvstore.dll:drvstore.dll (00007FFDD22D0000), size: 1347584 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\devobj.dll:devobj.dll (00007FFDDB1D0000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\wldp.dll:wldp.dll (00007FFDDAE40000), size: 249856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FFDDAD90000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\System32\imagehlp.dll:imagehlp.dll (00007FFDDCA10000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFDDAD70000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\system32\rsaenh.dll:rsaenh.dll (00007FFDDA680000), size: 217088 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.41 -C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_49c3a3c94c780a51\nvwgf2umx.dll:nvwgf2umx.dll (00007FFD9EA70000), size: 77615104 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7141 -C:\WINDOWS\system32\nvspcap64.dll:nvspcap64.dll (00007FFDAC180000), size: 2895872 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.23.0.74 -C:\WINDOWS\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFDD15E0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFDD0990000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFDD1040000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\system32\wbem\fastprox.dll:fastprox.dll (00007FFDD1060000), size: 1024000 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\amsi.dll:amsi.dll (00007FFDD0C20000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (00007FFDDAC20000), size: 167936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2108.7-0\MpOav.dll:MpOav.dll (00007FFDD0BA0000), size: 495616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.2108.7 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFD5C620000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 -C:\WINDOWS\SYSTEM32\opencl.dll:opencl.dll (00007FFD5C4B0000), size: 1482752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\radeonrays.dll:radeonrays.dll (00007FFD5C420000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2021.1.13f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFD5BCB0000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' -C:\WINDOWS\System32\PSAPI.DLL:PSAPI.DLL (00007FFDDBF40000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFDD75C0000), size: 1011712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.22000.37 -C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22000.120_none_9d947278b86cc467\comctl32.dll:comctl32.dll (00007FFDCC7E0000), size: 2772992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.22000.120 -C:\WINDOWS\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFDD3E40000), size: 1761280 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Windows\System32\MrmCoreR.dll:MrmCoreR.dll (00007FFDC45A0000), size: 1052672 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\Windows\System32\iertutil.dll:iertutil.dll (00007FFDD5A50000), size: 2826240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.22000.1 -C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll:windows.staterepositorycore.dll (00007FFDD6150000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FFDB87A0000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.51 -C:\WINDOWS\SYSTEM32\windows.staterepositoryclient.dll:windows.staterepositoryclient.dll (00007FFDCC430000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\Windows\System32\bcp47mrm.dll:bcp47mrm.dll (00007FFDBF940000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\Windows\System32\Windows.UI.dll:Windows.UI.dll (00007FFDCDCA0000), size: 1605632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22000.71_none_a5885354eb10b430\gdiplus.dll:gdiplus.dll (00007FFDCD680000), size: 1781760 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.71 -C:\WINDOWS\System32\MSCTF.dll:MSCTF.dll (00007FFDDC340000), size: 1171456 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.120 -C:\WINDOWS\SYSTEM32\edputil.dll:edputil.dll (00007FFDBE490000), size: 155648 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Windows\System32\VAULTCLI.dll:VAULTCLI.dll (00007FFDBD670000), size: 364544 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Windows\System32\Windows.StateRepositoryPS.dll:Windows.StateRepositoryPS.dll (00007FFDC2800000), size: 1261568 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.65 -C:\WINDOWS\SYSTEM32\policymanager.dll:policymanager.dll (00007FFDD5D10000), size: 655360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\msvcp110_win.dll:msvcp110_win.dll (00007FFDD5870000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\Windows\System32\Windows.System.Launcher.dll:Windows.System.Launcher.dll (00007FFDCC470000), size: 1290240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 -C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFDC5160000), size: 2232320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.22000.1 - -========== OUTPUTTING STACK TRACE ================== - -0x00007FFDDBA5466C (KERNELBASE) RaiseException -0x00007FF657B3282C (Unity) EditorMonoConsole::LogToConsoleImplementation -0x00007FF657B330BE (Unity) EditorMonoConsole::LogToConsoleImplementation -0x00007FF658F48EE8 (Unity) DebugStringToFilePostprocessedStacktrace -0x00007FF658F486DB (Unity) DebugStringToFile -0x00007FF657F07451 (Unity) LoadDomainAndUserAssemblies -0x00007FF657F0776C (Unity) LoadUserAssemblies -0x00007FF658113458 (Unity) ::operator() -0x00007FF65819A2F2 (Unity) asio::detail::completion_handler >::do_complete -0x00007FF65819C560 (Unity) asio::detail::win_iocp_io_service::do_one -0x00007FF65819FC4E (Unity) asio::io_service::run -0x00007FF65813C12A (Unity) RunAssetImportWorkerClientV2 -0x00007FF65813C180 (Unity) RunAssetImporterV2 -0x00007FF657C3FA37 (Unity) Application::InitializeProject -0x00007FF65804F127 (Unity) WinMain -0x00007FF659B7D662 (Unity) __scrt_common_main_seh -0x00007FFDDCD354E0 (KERNEL32) BaseThreadInitThunk -0x00007FFDDE02485B (ntdll) RtlUserThreadStart - -========== END OF STACKTRACE =========== - -A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: - * C:/Users/braus/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Chess Recode/Logs/shadercompiler-AssetImportWorker0.log b/Chess Recode/Logs/shadercompiler-AssetImportWorker0.log index be4fdcc..2d1a675 100644 --- a/Chess Recode/Logs/shadercompiler-AssetImportWorker0.log +++ b/Chess Recode/Logs/shadercompiler-AssetImportWorker0.log @@ -1,12 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileSnippet - insize=731 file=Assets/DefaultResourcesExtra/Sprites/Default pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_FULL_HDR uKW= dKW=ETC1_EXTERNAL_ALPHA INSTANCING_ON PIXELSNAP_ON UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=1 mask=6 start=32 ok=1 outsize=890 - -Cmd: compileSnippet - insize=731 file=Assets/DefaultResourcesExtra/Sprites/Default pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_FULL_HDR uKW= dKW=ETC1_EXTERNAL_ALPHA INSTANCING_ON PIXELSNAP_ON UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=1 mask=6 start=32 ok=1 outsize=454 - -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) - -Quitting shader compiler process diff --git a/Chess Recode/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Chess Recode/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 608dd2e..2d1a675 100644 --- a/Chess Recode/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Chess Recode/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,15 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.1.13f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileSnippet - insize=16577 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING uKW=_SUNDISK_NONE dKW=_SUNDISK_SIMPLE _SUNDISK_HIGH_QUALITY UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=5414 - -Cmd: compileSnippet - insize=16577 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING uKW=_SUNDISK_NONE dKW=_SUNDISK_SIMPLE _SUNDISK_HIGH_QUALITY UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=474 - -Cmd: compileSnippet - insize=16577 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING uKW=_SUNDISK_SIMPLE dKW=_SUNDISK_NONE _SUNDISK_HIGH_QUALITY UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Vertex platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=5698 - -Cmd: compileSnippet - insize=16577 file=Assets/DefaultResourcesExtra/Skybox/Procedural pass= cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=13 rsLen=0 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 SHADER_API_DESKTOP UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING uKW=_SUNDISK_SIMPLE dKW=_SUNDISK_NONE _SUNDISK_HIGH_QUALITY UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 flags=0 lang=0 type=Fragment platform=d3d11 reqs=33 mask=6 start=20 ok=1 outsize=934 -