Finish compiler

main
CDuong 1 year ago
parent 114b578742
commit c6ff12293e

Binary file not shown.

@ -19,11 +19,15 @@ public class Initalize : MonoBehaviour
public DoorAnimation[] Door; public DoorAnimation[] Door;
public NewTextModify[] Label; public NewTextModify[] Label;
public GameObject AllBoxes; public GameObject AllBoxes;
public TextMeshProUGUI CodeInput;
public int IndexChange = -1, ActionChange = -1, TimeStop = 0, Accumulator = 0; public int IndexChange = -1, ActionChange = -1, TimeStop = 0, Accumulator = 0;
public bool ActionExisted = false, ActionMoving = false; public bool ActionExisted = false, ActionMoving = false;
Queue<Operation> AllOperation = new Queue<Operation>(); Queue<Operation> AllOperation = new Queue<Operation>();
public GameObject TextAreaInstruction, TextAreaInput, CompileButton;
public TextMeshProUGUI Instruction, Input;
Queue<int> AllInput = new Queue<int>();
public int Output;
private bool GonnaCompile = true; private bool GonnaCompile = true;
private int FakeAccumulator = 0; private int FakeAccumulator = 0;
private int[] FakeBoxes = new int[100]; private int[] FakeBoxes = new int[100];
@ -37,8 +41,6 @@ public class Initalize : MonoBehaviour
Door[i] = Boxes[i].gameObject.transform.GetChild(0).GetChild(0).GetComponent<DoorAnimation>(); Door[i] = Boxes[i].gameObject.transform.GetChild(0).GetChild(0).GetComponent<DoorAnimation>();
Label[i].Init(i); Label[i].Init(i);
} }
UpdateValue(0, 10);
UpdateValue(1, 2);
} }
public Operation Cope(int idx, int val, int op) { public Operation Cope(int idx, int val, int op) {
@ -50,20 +52,20 @@ public class Initalize : MonoBehaviour
// Put value from Box into Accumulator // Put value from Box into Accumulator
void Op5(int idx) { void Op5(int idx) {
AllOperation.Enqueue(Cope(idx, 0, 1)); AllOperation.Enqueue(Cope(idx, 0, 1));
AllOperation.Enqueue(Cope(100, Label[idx].Val, 0)); AllOperation.Enqueue(Cope(100, FakeBoxes[idx], 0));
AllOperation.Enqueue(Cope(0, 100, 3)); AllOperation.Enqueue(Cope(0, 100, 3));
AllOperation.Enqueue(Cope(idx, 0, 2)); AllOperation.Enqueue(Cope(idx, 0, 2));
FakeBoxes[idx] = FakeAccumulator; FakeAccumulator = FakeBoxes[idx];
} }
// Put value from Accumulator into Box // Put value from Accumulator into Box
void Op3(int idx) { void Op3(int idx) {
// Code to animate number to fly up from Accumulator // Code to animate number to fly up from Accumulator
AllOperation.Enqueue(Cope(idx, 0, 1)); AllOperation.Enqueue(Cope(idx, 0, 1));
AllOperation.Enqueue(Cope(idx, Accumulator, 0)); AllOperation.Enqueue(Cope(idx, FakeAccumulator, 0));
AllOperation.Enqueue(Cope(0, 100, 3)); AllOperation.Enqueue(Cope(0, 100, 3));
AllOperation.Enqueue(Cope(idx, 0, 2)); AllOperation.Enqueue(Cope(idx, 0, 2));
FakeAccumulator = FakeBoxes[idx]; FakeBoxes[idx] = FakeAccumulator;
} }
// Get value from Box and add into Accumulator // Get value from Box and add into Accumulator
@ -84,6 +86,19 @@ public class Initalize : MonoBehaviour
FakeAccumulator -= FakeBoxes[idx]; FakeAccumulator -= FakeBoxes[idx];
} }
void Op901() {
// Code to summon number from Input Bracket
Debug.Log(AllInput.Peek());
AllOperation.Enqueue(Cope(100, AllInput.Peek(), 0));
FakeAccumulator = AllInput.Peek(); AllInput.Dequeue();
}
void Op902() {
// Code to summon number from Accumulator
AllOperation.Enqueue(Cope(101, FakeAccumulator, 0));
// Output = FakeAccumulator;
}
// Just update value of a box from nowhere // Just update value of a box from nowhere
void UpdateValue(int idx, int value) { void UpdateValue(int idx, int value) {
AllOperation.Enqueue(Cope(idx, 0, 1)); AllOperation.Enqueue(Cope(idx, 0, 1));
@ -97,17 +112,40 @@ public class Initalize : MonoBehaviour
} }
void Compile() { bool CheckDigit(char c) {
return (c >= '0' && c <= '9');
}
public void Compile() {
if(!GonnaCompile) return; if(!GonnaCompile) return;
string InputText = CodeInput.text; GonnaCompile = false;
if(InputText.Length <= -1 || InputText[0] != '#') return; string InstructionText = Instruction.text;
string InputText = Input.text;
TextAreaInstruction.gameObject.SetActive(false);
CompileButton.gameObject.SetActive(false);
TextAreaInput.gameObject.SetActive(false);
int InputLength = InputText.Length;
for(int i = 0; i < InputLength; ++i) {
int idx = i, value = 0;
while(idx < InputLength && CheckDigit(InputText[idx])) {
value = value * 10 + (InputText[idx] - '0');
++idx;
}
if(i != idx) {
i = idx - 1;
AllInput.Enqueue(value);
}
}
int[] EncodeOperation = new int[100]; int[] EncodeOperation = new int[100];
int InputLength = InputText.Length, Counter = 0; int InstructionLength = InstructionText.Length, Counter = 0;
for(int i = 2; i < InputLength - 2; i += 4) { for(int i = 0; i < InstructionLength - 2; i += 4) {
EncodeOperation[Counter] = Convert.ToInt32(InputText.Substring(i, 3)); EncodeOperation[Counter] = Convert.ToInt32(InstructionText.Substring(i, 3));
Counter += 1; Counter += 1;
} }
GonnaCompile = false;
int ptr = 0; int ptr = 0;
while(true) { while(true) {
int OpType = EncodeOperation[ptr] / 100; int OpType = EncodeOperation[ptr] / 100;
@ -116,7 +154,8 @@ public class Initalize : MonoBehaviour
break; break;
} }
else if(OpType == 9) { else if(OpType == 9) {
continue; if(OpValue == 1) Op901();
if(OpValue == 2) Op902();
} }
else if(OpType == 1) { else if(OpType == 1) {
Op1(OpValue); Op1(OpValue);
@ -149,7 +188,7 @@ public class Initalize : MonoBehaviour
// Update is called once per frame // Update is called once per frame
void Update() void Update()
{ {
Compile(); // Compile();
if(TimeStop > 0) { if(TimeStop > 0) {
TimeStop -= 1; TimeStop -= 1;
return; return;
@ -173,6 +212,10 @@ public class Initalize : MonoBehaviour
Accumulator = Current.val; Accumulator = Current.val;
return; return;
} }
else if(Current.idx == 101) {
Output = Current.val;
return;
}
Label[Current.idx].ChangeValue(Current.val); Label[Current.idx].ChangeValue(Current.val);
} }
else if(Current.op == 4) { else if(Current.op == 4) {

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

@ -1 +1 @@
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":1974.822509765625,"y":996.4484252929688,"z":64.18412780761719},"rotation":{"x":0.03447769582271576,"y":-0.029977822676301004,"z":0.0010343323228880764,"w":0.9989559054374695},"size":1270.9102783203125,"orthographic":true} {"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":675.4541015625,"y":269.14300537109377,"z":-281.14569091796877},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":536.6791381835938,"orthographic":true}

@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC
-logFile -logFile
Logs/AssetImportWorker0.log Logs/AssetImportWorker0.log
-srvPort -srvPort
53688 54541
Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC
D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [32436] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1594671666 [EditorId] 1594671666 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... Player connection [24940] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 2824639831 [EditorId] 2824639831 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
Player connection [32436] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1594671666 [EditorId] 1594671666 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... Player connection [24940] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 2824639831 [EditorId] 2824639831 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
Refreshing native plugins compatible for Editor in 5.47 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1586.37 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.0f1 (fb119bb0b476) Initialize engine version: 2022.3.0f1 (fb119bb0b476)
[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems
@ -69,99 +69,163 @@ Initialize mono
Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed'
Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56276 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.002981 seconds. Registered in 0.006060 seconds.
- Loaded All Assemblies, in 0.303 seconds - Loaded All Assemblies, in 6.681 seconds
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.218 seconds - Finished resetting the current domain, in 0.331 seconds
Domain Reload Profiling: 521ms Domain Reload Profiling: 7013ms
BeginReloadAssembly (110ms) BeginReloadAssembly (5014ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms) CreateAndSetChildDomain (2ms)
RebuildCommonClasses (29ms) RebuildCommonClasses (483ms)
RebuildNativeTypeToScriptingClass (8ms) RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (44ms) initialDomainReloadingComplete (66ms)
LoadAllAssembliesAndSetupDomain (111ms) LoadAllAssembliesAndSetupDomain (1106ms)
LoadAssemblies (109ms) LoadAssemblies (5013ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (109ms) AnalyzeDomain (1100ms)
TypeCache.Refresh (108ms) TypeCache.Refresh (1100ms)
TypeCache.ScanAssembly (97ms) TypeCache.ScanAssembly (796ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms) ResolveRequiredComponents (1ms)
FinalizeReload (218ms) FinalizeReload (332ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (171ms) SetupLoadedEditorAssemblies (256ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (7ms) InitializePlatformSupportModulesInManaged (10ms)
SetLoadedEditorAssemblies (7ms) SetLoadedEditorAssemblies (10ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (2ms) BeforeProcessingInitializeOnLoad (3ms)
ProcessInitializeOnLoadAttributes (117ms) ProcessInitializeOnLoadAttributes (172ms)
ProcessInitializeOnLoadMethodAttributes (38ms) ProcessInitializeOnLoadMethodAttributes (62ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms) AwakeInstancesAfterBackupRestoration (0ms)
======================================================================== ========================================================================
Worker process is ready to serve import requests Worker process is ready to serve import requests
Script is not up to date after domain reload: guid(29531ca9764e72b40a7a272f03d8f99e) path("Assets/Initalize.cs") state(2)
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.541 seconds - Loaded All Assemblies, in 1.853 seconds
Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.406 seconds - Finished resetting the current domain, in 0.348 seconds
Domain Reload Profiling: 947ms Domain Reload Profiling: 2202ms
BeginReloadAssembly (105ms) BeginReloadAssembly (141ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms) DisableScriptedObjects (5ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (18ms) CreateAndSetChildDomain (18ms)
RebuildCommonClasses (27ms) RebuildCommonClasses (24ms)
RebuildNativeTypeToScriptingClass (8ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (31ms) initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (370ms) LoadAllAssembliesAndSetupDomain (1652ms)
LoadAssemblies (192ms) LoadAssemblies (1547ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (232ms) AnalyzeDomain (194ms)
TypeCache.Refresh (216ms) TypeCache.Refresh (181ms)
TypeCache.ScanAssembly (206ms) TypeCache.ScanAssembly (173ms)
ScanForSourceGeneratedMonoScriptInfo (13ms) ScanForSourceGeneratedMonoScriptInfo (10ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (406ms) FinalizeReload (349ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (272ms) SetupLoadedEditorAssemblies (237ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (4ms) InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (42ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (203ms) ProcessInitializeOnLoadAttributes (179ms)
ProcessInitializeOnLoadMethodAttributes (18ms) ProcessInitializeOnLoadMethodAttributes (13ms)
AfterProcessingInitializeOnLoad (2ms) AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (5ms) AwakeInstancesAfterBackupRestoration (5ms)
Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) Unloading 3115 Unused Serialized files (Serialized files now loaded: 0)
Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. Unloading 31 unused Assets / (58.4 KB). Loaded Objects now: 3580.
Memory consumption went from 121.0 MB to 121.0 MB. Memory consumption went from 121.0 MB to 121.0 MB.
Total: 3.467500 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.249900 ms MarkObjects: 2.914900 ms DeleteObjects: 0.103500 ms) Total: 3.718500 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.082200 ms MarkObjects: 3.264000 ms DeleteObjects: 0.152000 ms)
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.546 seconds
Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.755 seconds
Domain Reload Profiling: 1301ms
BeginReloadAssembly (146ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (3ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (28ms)
RebuildCommonClasses (23ms)
RebuildNativeTypeToScriptingClass (8ms)
initialDomainReloadingComplete (20ms)
LoadAllAssembliesAndSetupDomain (350ms)
LoadAssemblies (256ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (184ms)
TypeCache.Refresh (177ms)
TypeCache.ScanAssembly (169ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (7ms)
FinalizeReload (756ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (226ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (163ms)
ProcessInitializeOnLoadMethodAttributes (17ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (5ms)
Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3583.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 3.028800 ms (FindLiveObjects: 0.170700 ms CreateObjectMapping: 0.077400 ms MarkObjects: 2.742600 ms DeleteObjects: 0.037600 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
@ -176,61 +240,61 @@ AssetImportParameters requested are different than current active one (requested
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== ========================================================================
Received Import Request. Received Import Request.
Time since last request: 508368.367545 seconds. Time since last request: 510600.756868 seconds.
path: Assets/A.prefab path: Assets/Initalize.cs
artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40d841f95b8096f3e3558ebb76b6cc9a') in 0.119614 seconds Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '579cfa2c782b3ebdcfc8e0d4af86d405') in 0.008573 seconds
Number of updated asset objects reloaded before import = 0 Number of updated asset objects reloaded before import = 0
Number of asset objects unloaded after import = 61 Number of asset objects unloaded after import = 0
======================================================================== ========================================================================
Received Prepare Received Prepare
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.659 seconds - Loaded All Assemblies, in 0.722 seconds
Refreshing native plugins compatible for Editor in 2.87 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.876 seconds - Finished resetting the current domain, in 0.962 seconds
Domain Reload Profiling: 1535ms Domain Reload Profiling: 1684ms
BeginReloadAssembly (128ms) BeginReloadAssembly (152ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (5ms) DisableScriptedObjects (6ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (35ms) CreateAndSetChildDomain (40ms)
RebuildCommonClasses (35ms) RebuildCommonClasses (34ms)
RebuildNativeTypeToScriptingClass (12ms) RebuildNativeTypeToScriptingClass (14ms)
initialDomainReloadingComplete (27ms) initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (456ms) LoadAllAssembliesAndSetupDomain (494ms)
LoadAssemblies (230ms) LoadAssemblies (273ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (293ms) AnalyzeDomain (295ms)
TypeCache.Refresh (287ms) TypeCache.Refresh (287ms)
TypeCache.ScanAssembly (275ms) TypeCache.ScanAssembly (275ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (2ms)
ResolveRequiredComponents (6ms) ResolveRequiredComponents (7ms)
FinalizeReload (876ms) FinalizeReload (963ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (405ms) SetupLoadedEditorAssemblies (363ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms) InitializePlatformSupportModulesInManaged (5ms)
SetLoadedEditorAssemblies (6ms) SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (72ms) BeforeProcessingInitializeOnLoad (58ms)
ProcessInitializeOnLoadAttributes (291ms) ProcessInitializeOnLoadAttributes (264ms)
ProcessInitializeOnLoadMethodAttributes (27ms) ProcessInitializeOnLoadMethodAttributes (29ms)
AfterProcessingInitializeOnLoad (3ms) AfterProcessingInitializeOnLoad (3ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (9ms) AwakeInstancesAfterBackupRestoration (14ms)
Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 3.58 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) Unloading 3094 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3592. Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586.
Memory consumption went from 121.4 MB to 121.3 MB. Memory consumption went from 116.8 MB to 116.8 MB.
Total: 3.795200 ms (FindLiveObjects: 0.469000 ms CreateObjectMapping: 0.126000 ms MarkObjects: 3.147100 ms DeleteObjects: 0.052000 ms) Total: 8.686500 ms (FindLiveObjects: 0.251800 ms CreateObjectMapping: 0.085800 ms MarkObjects: 8.307500 ms DeleteObjects: 0.040200 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
@ -250,50 +314,176 @@ Received Prepare
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.509 seconds - Loaded All Assemblies, in 0.461 seconds
Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.513 seconds - Finished resetting the current domain, in 0.460 seconds
Domain Reload Profiling: 1022ms Domain Reload Profiling: 921ms
BeginReloadAssembly (111ms) BeginReloadAssembly (102ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms) DisableScriptedObjects (4ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (31ms) CreateAndSetChildDomain (30ms)
RebuildCommonClasses (27ms) RebuildCommonClasses (23ms)
RebuildNativeTypeToScriptingClass (9ms) RebuildNativeTypeToScriptingClass (8ms)
initialDomainReloadingComplete (21ms) initialDomainReloadingComplete (19ms)
LoadAllAssembliesAndSetupDomain (341ms) LoadAllAssembliesAndSetupDomain (309ms)
LoadAssemblies (179ms) LoadAssemblies (171ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (214ms) AnalyzeDomain (182ms)
TypeCache.Refresh (211ms) TypeCache.Refresh (179ms)
TypeCache.ScanAssembly (201ms) TypeCache.ScanAssembly (162ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (3ms)
FinalizeReload (514ms) FinalizeReload (460ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (232ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (41ms)
ProcessInitializeOnLoadAttributes (166ms)
ProcessInitializeOnLoadMethodAttributes (15ms)
AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (5ms)
Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.455300 ms (FindLiveObjects: 0.172700 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.153200 ms DeleteObjects: 0.048000 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.815 seconds
Refreshing native plugins compatible for Editor in 2.89 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.954 seconds
Domain Reload Profiling: 1768ms
BeginReloadAssembly (183ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (8ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (35ms)
RebuildCommonClasses (43ms)
RebuildNativeTypeToScriptingClass (14ms)
initialDomainReloadingComplete (36ms)
LoadAllAssembliesAndSetupDomain (538ms)
LoadAssemblies (328ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (312ms)
TypeCache.Refresh (303ms)
TypeCache.ScanAssembly (290ms)
ScanForSourceGeneratedMonoScriptInfo (4ms)
ResolveRequiredComponents (6ms)
FinalizeReload (954ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (268ms) SetupLoadedEditorAssemblies (268ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (5ms)
SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (59ms)
ProcessInitializeOnLoadAttributes (184ms)
ProcessInitializeOnLoadMethodAttributes (14ms)
AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (5ms)
Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.669000 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.091600 ms MarkObjects: 2.317100 ms DeleteObjects: 0.044100 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.522 seconds
Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.590 seconds
Domain Reload Profiling: 1112ms
BeginReloadAssembly (114ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (5ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (30ms)
RebuildCommonClasses (30ms)
RebuildNativeTypeToScriptingClass (10ms)
initialDomainReloadingComplete (22ms)
LoadAllAssembliesAndSetupDomain (347ms)
LoadAssemblies (194ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (206ms)
TypeCache.Refresh (202ms)
TypeCache.ScanAssembly (192ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (4ms)
FinalizeReload (590ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (292ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (4ms) InitializePlatformSupportModulesInManaged (4ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (50ms) BeforeProcessingInitializeOnLoad (50ms)
ProcessInitializeOnLoadAttributes (191ms) ProcessInitializeOnLoadAttributes (214ms)
ProcessInitializeOnLoadMethodAttributes (17ms) ProcessInitializeOnLoadMethodAttributes (18ms)
AfterProcessingInitializeOnLoad (2ms) AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (6ms) AwakeInstancesAfterBackupRestoration (7ms)
Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3595. Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595.
Memory consumption went from 121.6 MB to 121.6 MB. Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.592600 ms (FindLiveObjects: 0.347400 ms CreateObjectMapping: 0.105100 ms MarkObjects: 2.099300 ms DeleteObjects: 0.037800 ms) Total: 2.911800 ms (FindLiveObjects: 0.201700 ms CreateObjectMapping: 0.085500 ms MarkObjects: 2.537300 ms DeleteObjects: 0.086300 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):

File diff suppressed because it is too large Load Diff

@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC
-logFile -logFile
Logs/AssetImportWorker1.log Logs/AssetImportWorker1.log
-srvPort -srvPort
53688 54541
Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC
D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC
[UnityMemory] Configuration Parameters - Can be set up in boot.config [UnityMemory] Configuration Parameters - Can be set up in boot.config
@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC
"memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gi-baking-worker=262144"
"memorysetup-temp-allocator-size-gfx=262144" "memorysetup-temp-allocator-size-gfx=262144"
Player connection [33492] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1900353775 [EditorId] 1900353775 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... Player connection [3712] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1432537064 [EditorId] 1432537064 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
Player connection [33492] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1900353775 [EditorId] 1900353775 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... Player connection [3712] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1432537064 [EditorId] 1432537064 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
Refreshing native plugins compatible for Editor in 4.90 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1586.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2022.3.0f1 (fb119bb0b476) Initialize engine version: 2022.3.0f1 (fb119bb0b476)
[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems
@ -69,98 +69,99 @@ Initialize mono
Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed'
Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56220 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56492
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.002518 seconds. Registered in 0.006083 seconds.
- Loaded All Assemblies, in 0.255 seconds - Loaded All Assemblies, in 6.681 seconds
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.217 seconds - Finished resetting the current domain, in 0.331 seconds
Domain Reload Profiling: 472ms Domain Reload Profiling: 7013ms
BeginReloadAssembly (67ms) BeginReloadAssembly (5013ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms) CreateAndSetChildDomain (2ms)
RebuildCommonClasses (28ms) RebuildCommonClasses (482ms)
RebuildNativeTypeToScriptingClass (8ms) RebuildNativeTypeToScriptingClass (13ms)
initialDomainReloadingComplete (43ms) initialDomainReloadingComplete (68ms)
LoadAllAssembliesAndSetupDomain (108ms) LoadAllAssembliesAndSetupDomain (1104ms)
LoadAssemblies (67ms) LoadAssemblies (5011ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (105ms) AnalyzeDomain (1100ms)
TypeCache.Refresh (105ms) TypeCache.Refresh (1099ms)
TypeCache.ScanAssembly (95ms) TypeCache.ScanAssembly (794ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (0ms) ResolveRequiredComponents (1ms)
FinalizeReload (217ms) FinalizeReload (332ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (170ms) SetupLoadedEditorAssemblies (256ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms) InitializePlatformSupportModulesInManaged (9ms)
SetLoadedEditorAssemblies (7ms) SetLoadedEditorAssemblies (9ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (2ms) BeforeProcessingInitializeOnLoad (3ms)
ProcessInitializeOnLoadAttributes (117ms) ProcessInitializeOnLoadAttributes (176ms)
ProcessInitializeOnLoadMethodAttributes (39ms) ProcessInitializeOnLoadMethodAttributes (58ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms) AwakeInstancesAfterBackupRestoration (0ms)
======================================================================== ========================================================================
Worker process is ready to serve import requests Worker process is ready to serve import requests
Script is not up to date after domain reload: guid(29531ca9764e72b40a7a272f03d8f99e) path("Assets/Initalize.cs") state(2)
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.543 seconds - Loaded All Assemblies, in 1.854 seconds
Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.405 seconds - Finished resetting the current domain, in 0.348 seconds
Domain Reload Profiling: 948ms Domain Reload Profiling: 2202ms
BeginReloadAssembly (105ms) BeginReloadAssembly (143ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms) DisableScriptedObjects (5ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (18ms) CreateAndSetChildDomain (19ms)
RebuildCommonClasses (27ms) RebuildCommonClasses (23ms)
RebuildNativeTypeToScriptingClass (8ms) RebuildNativeTypeToScriptingClass (7ms)
initialDomainReloadingComplete (30ms) initialDomainReloadingComplete (28ms)
LoadAllAssembliesAndSetupDomain (372ms) LoadAllAssembliesAndSetupDomain (1653ms)
LoadAssemblies (193ms) LoadAssemblies (1549ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (234ms) AnalyzeDomain (195ms)
TypeCache.Refresh (217ms) TypeCache.Refresh (182ms)
TypeCache.ScanAssembly (207ms) TypeCache.ScanAssembly (172ms)
ScanForSourceGeneratedMonoScriptInfo (12ms) ScanForSourceGeneratedMonoScriptInfo (11ms)
ResolveRequiredComponents (4ms) ResolveRequiredComponents (3ms)
FinalizeReload (405ms) FinalizeReload (348ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (270ms) SetupLoadedEditorAssemblies (241ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (3ms) InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (43ms) BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (202ms) ProcessInitializeOnLoadAttributes (182ms)
ProcessInitializeOnLoadMethodAttributes (16ms) ProcessInitializeOnLoadMethodAttributes (13ms)
AfterProcessingInitializeOnLoad (2ms) AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (6ms) AwakeInstancesAfterBackupRestoration (5ms)
Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) Unloading 3115 Unused Serialized files (Serialized files now loaded: 0)
Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. Unloading 31 unused Assets / (58.5 KB). Loaded Objects now: 3580.
Memory consumption went from 121.0 MB to 121.0 MB. Memory consumption went from 121.0 MB to 121.0 MB.
Total: 3.426600 ms (FindLiveObjects: 0.248200 ms CreateObjectMapping: 0.190600 ms MarkObjects: 2.897800 ms DeleteObjects: 0.089000 ms) Total: 4.237200 ms (FindLiveObjects: 0.209900 ms CreateObjectMapping: 0.089100 ms MarkObjects: 3.781700 ms DeleteObjects: 0.155400 ms)
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
@ -179,13 +180,76 @@ Received Prepare
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.679 seconds - Loaded All Assemblies, in 0.544 seconds
Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.877 seconds - Finished resetting the current domain, in 0.742 seconds
Domain Reload Profiling: 1557ms Domain Reload Profiling: 1287ms
BeginReloadAssembly (143ms) BeginReloadAssembly (145ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (27ms)
RebuildCommonClasses (24ms)
RebuildNativeTypeToScriptingClass (8ms)
initialDomainReloadingComplete (19ms)
LoadAllAssembliesAndSetupDomain (348ms)
LoadAssemblies (256ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (183ms)
TypeCache.Refresh (180ms)
TypeCache.ScanAssembly (171ms)
ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (3ms)
FinalizeReload (743ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (223ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (3ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (38ms)
ProcessInitializeOnLoadAttributes (160ms)
ProcessInitializeOnLoadMethodAttributes (17ms)
AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (5ms)
Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3583.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.631900 ms (FindLiveObjects: 0.217300 ms CreateObjectMapping: 0.070400 ms MarkObjects: 2.308200 ms DeleteObjects: 0.035700 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.721 seconds
Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.906 seconds
Domain Reload Profiling: 1627ms
BeginReloadAssembly (141ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (6ms) DisableScriptedObjects (6ms)
BackupInstance (0ms) BackupInstance (0ms)
@ -193,36 +257,162 @@ Domain Reload Profiling: 1557ms
CreateAndSetChildDomain (36ms) CreateAndSetChildDomain (36ms)
RebuildCommonClasses (33ms) RebuildCommonClasses (33ms)
RebuildNativeTypeToScriptingClass (12ms) RebuildNativeTypeToScriptingClass (12ms)
initialDomainReloadingComplete (28ms) initialDomainReloadingComplete (27ms)
LoadAllAssembliesAndSetupDomain (463ms) LoadAllAssembliesAndSetupDomain (507ms)
LoadAssemblies (236ms) LoadAssemblies (287ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (286ms)
TypeCache.Refresh (281ms)
TypeCache.ScanAssembly (269ms)
ScanForSourceGeneratedMonoScriptInfo (2ms)
ResolveRequiredComponents (3ms)
FinalizeReload (907ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (347ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (4ms)
SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (52ms)
ProcessInitializeOnLoadAttributes (259ms)
ProcessInitializeOnLoadMethodAttributes (24ms)
AfterProcessingInitializeOnLoad (3ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (8ms)
Refreshing native plugins compatible for Editor in 2.88 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 3.460400 ms (FindLiveObjects: 0.222600 ms CreateObjectMapping: 0.079400 ms MarkObjects: 3.111700 ms DeleteObjects: 0.045900 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.460 seconds
Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.461 seconds
Domain Reload Profiling: 921ms
BeginReloadAssembly (103ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (4ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (29ms)
RebuildCommonClasses (22ms)
RebuildNativeTypeToScriptingClass (8ms)
initialDomainReloadingComplete (18ms)
LoadAllAssembliesAndSetupDomain (309ms)
LoadAssemblies (173ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (294ms) AnalyzeDomain (181ms)
TypeCache.Refresh (288ms) TypeCache.Refresh (178ms)
TypeCache.ScanAssembly (278ms) TypeCache.ScanAssembly (163ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (3ms)
FinalizeReload (461ms)
ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (231ms)
LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (3ms)
SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (40ms)
ProcessInitializeOnLoadAttributes (167ms)
ProcessInitializeOnLoadMethodAttributes (15ms)
AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (6ms)
Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589.
Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.720300 ms (FindLiveObjects: 0.175000 ms CreateObjectMapping: 0.078400 ms MarkObjects: 2.422200 ms DeleteObjects: 0.043900 ms)
Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active):
custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 ->
custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 ->
custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc ->
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 ->
custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b ->
custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 ->
custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 ->
custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 ->
custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
========================================================================
Received Prepare
Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.846 seconds
Refreshing native plugins compatible for Editor in 2.72 ms, found 3 plugins.
Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.798 seconds
Domain Reload Profiling: 1644ms
BeginReloadAssembly (199ms)
ExecutionOrderSort (0ms)
DisableScriptedObjects (8ms)
BackupInstance (0ms)
ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (37ms)
RebuildCommonClasses (45ms)
RebuildNativeTypeToScriptingClass (15ms)
initialDomainReloadingComplete (42ms)
LoadAllAssembliesAndSetupDomain (545ms)
LoadAssemblies (301ms)
RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (356ms)
TypeCache.Refresh (345ms)
TypeCache.ScanAssembly (328ms)
ScanForSourceGeneratedMonoScriptInfo (5ms)
ResolveRequiredComponents (6ms) ResolveRequiredComponents (6ms)
FinalizeReload (878ms) FinalizeReload (799ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (410ms) SetupLoadedEditorAssemblies (268ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms) InitializePlatformSupportModulesInManaged (5ms)
SetLoadedEditorAssemblies (6ms) SetLoadedEditorAssemblies (5ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (77ms) BeforeProcessingInitializeOnLoad (59ms)
ProcessInitializeOnLoadAttributes (292ms) ProcessInitializeOnLoadAttributes (184ms)
ProcessInitializeOnLoadMethodAttributes (26ms) ProcessInitializeOnLoadMethodAttributes (13ms)
AfterProcessingInitializeOnLoad (3ms) AfterProcessingInitializeOnLoad (1ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (9ms) AwakeInstancesAfterBackupRestoration (5ms)
Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3583. Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592.
Memory consumption went from 117.0 MB to 117.0 MB. Memory consumption went from 117.0 MB to 117.0 MB.
Total: 3.692500 ms (FindLiveObjects: 0.299600 ms CreateObjectMapping: 0.104200 ms MarkObjects: 3.227400 ms DeleteObjects: 0.059900 ms) Total: 2.671300 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.329300 ms DeleteObjects: 0.051000 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
@ -242,50 +432,50 @@ Received Prepare
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll
Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll
- Loaded All Assemblies, in 0.510 seconds - Loaded All Assemblies, in 0.522 seconds
Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Finished resetting the current domain, in 0.512 seconds - Finished resetting the current domain, in 0.590 seconds
Domain Reload Profiling: 1023ms Domain Reload Profiling: 1112ms
BeginReloadAssembly (111ms) BeginReloadAssembly (114ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (5ms) DisableScriptedObjects (5ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (31ms) CreateAndSetChildDomain (31ms)
RebuildCommonClasses (26ms) RebuildCommonClasses (29ms)
RebuildNativeTypeToScriptingClass (9ms) RebuildNativeTypeToScriptingClass (10ms)
initialDomainReloadingComplete (21ms) initialDomainReloadingComplete (23ms)
LoadAllAssembliesAndSetupDomain (342ms) LoadAllAssembliesAndSetupDomain (346ms)
LoadAssemblies (179ms) LoadAssemblies (193ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
AnalyzeDomain (214ms) AnalyzeDomain (205ms)
TypeCache.Refresh (211ms) TypeCache.Refresh (202ms)
TypeCache.ScanAssembly (201ms) TypeCache.ScanAssembly (192ms)
ScanForSourceGeneratedMonoScriptInfo (0ms) ScanForSourceGeneratedMonoScriptInfo (0ms)
ResolveRequiredComponents (3ms) ResolveRequiredComponents (4ms)
FinalizeReload (514ms) FinalizeReload (590ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (0ms) RebuildScriptCaches (0ms)
SetupLoadedEditorAssemblies (267ms) SetupLoadedEditorAssemblies (291ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (4ms) InitializePlatformSupportModulesInManaged (4ms)
SetLoadedEditorAssemblies (4ms) SetLoadedEditorAssemblies (4ms)
RefreshPlugins (0ms) RefreshPlugins (0ms)
BeforeProcessingInitializeOnLoad (48ms) BeforeProcessingInitializeOnLoad (51ms)
ProcessInitializeOnLoadAttributes (193ms) ProcessInitializeOnLoadAttributes (211ms)
ProcessInitializeOnLoadMethodAttributes (17ms) ProcessInitializeOnLoadMethodAttributes (18ms)
AfterProcessingInitializeOnLoad (2ms) AfterProcessingInitializeOnLoad (2ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (6ms) AwakeInstancesAfterBackupRestoration (6ms)
Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 3095 Unused Serialized files (Serialized files now loaded: 0)
Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3586. Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595.
Memory consumption went from 117.0 MB to 117.0 MB. Memory consumption went from 117.0 MB to 117.0 MB.
Total: 2.754400 ms (FindLiveObjects: 0.188100 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.442700 ms DeleteObjects: 0.038900 ms) Total: 3.542700 ms (FindLiveObjects: 0.207000 ms CreateObjectMapping: 0.090900 ms MarkObjects: 3.182000 ms DeleteObjects: 0.061400 ms)
Prepare: number of updated asset objects reloaded= 0 Prepare: number of updated asset objects reloaded= 0
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):

File diff suppressed because it is too large Load Diff

@ -0,0 +1,6 @@
Base path: 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data', plugins path 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
Quitting shader compiler process

@ -16,10 +16,10 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 43.2 y: 43.2
width: 1536 width: 2048
height: 772.8 height: 1060.8
m_ShowMode: 4 m_ShowMode: 4
m_Title: Hierarchy m_Title: Game
m_RootView: {fileID: 2} m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
@ -44,8 +44,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1536 width: 2048
height: 772.8 height: 1060.8
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_UseTopView: 1 m_UseTopView: 1
@ -69,7 +69,7 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1536 width: 2048
height: 30 height: 30
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
@ -90,8 +90,8 @@ MonoBehaviour:
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 752.8 y: 1040.8
width: 1536 width: 2048
height: 20 height: 20
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
@ -114,8 +114,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 30 y: 30
width: 1536 width: 2048
height: 722.8 height: 1010.80005
m_MinSize: {x: 300, y: 100} m_MinSize: {x: 300, y: 100}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
@ -139,8 +139,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1172 width: 1562.4
height: 722.8 height: 1010.80005
m_MinSize: {x: 200, y: 100} m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
@ -164,8 +164,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 1172 width: 1562.4
height: 428 height: 598.4
m_MinSize: {x: 200, y: 50} m_MinSize: {x: 200, y: 50}
m_MaxSize: {x: 16192, y: 8096} m_MaxSize: {x: 16192, y: 8096}
vertical: 0 vertical: 0
@ -187,10 +187,10 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 289.6 width: 386.4
height: 428 height: 598.4
m_MinSize: {x: 200, y: 200} m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 13} m_ActualView: {fileID: 13}
m_Panes: m_Panes:
- {fileID: 13} - {fileID: 13}
@ -206,23 +206,23 @@ MonoBehaviour:
m_Enabled: 1 m_Enabled: 1
m_EditorHideFlags: 1 m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: SceneView m_Name: GameView
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 289.6 x: 386.4
y: 0 y: 0
width: 882.4 width: 1176
height: 428 height: 598.4
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 14} m_ActualView: {fileID: 15}
m_Panes: m_Panes:
- {fileID: 14} - {fileID: 14}
- {fileID: 15} - {fileID: 15}
m_Selected: 0 m_Selected: 1
m_LastSelected: 1 m_LastSelected: 0
--- !u!114 &10 --- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
@ -239,11 +239,11 @@ MonoBehaviour:
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 428 y: 598.4
width: 1172 width: 1562.4
height: 294.8 height: 412.40002
m_MinSize: {x: 100, y: 100} m_MinSize: {x: 101, y: 121}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 12} m_ActualView: {fileID: 12}
m_Panes: m_Panes:
- {fileID: 16} - {fileID: 16}
@ -265,12 +265,12 @@ MonoBehaviour:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 1172 x: 1562.4
y: 0 y: 0
width: 364 width: 485.59998
height: 722.8 height: 1010.80005
m_MinSize: {x: 275, y: 50} m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 17} m_ActualView: {fileID: 17}
m_Panes: m_Panes:
- {fileID: 17} - {fileID: 17}
@ -297,9 +297,9 @@ MonoBehaviour:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 501.6 y: 672
width: 1171 width: 1561.4
height: 273.8 height: 391.40002
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
@ -332,8 +332,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 73.6 y: 73.6
width: 288.6 width: 385.4
height: 407 height: 577.4
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
@ -347,9 +347,9 @@ MonoBehaviour:
m_SceneHierarchy: m_SceneHierarchy:
m_TreeViewState: m_TreeViewState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: 46eeffff m_SelectedIDs: c8590000
m_LastClickedID: -4538 m_LastClickedID: 22984
m_ExpandedIDs: 2cfbffffae5a0000 m_ExpandedIDs: aaddffff2cfbffff925a0000b65a0000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
@ -393,10 +393,10 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 289.6 x: 386.4
y: 73.6 y: 73.6
width: 880.4 width: 1174
height: 407 height: 577.4
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
@ -684,9 +684,9 @@ MonoBehaviour:
floating: 0 floating: 0
collapsed: 0 collapsed: 0
displayed: 1 displayed: 1
snapOffset: {x: 636.8, y: 25} snapOffset: {x: -537.5999, y: -567.19995}
snapOffsetDelta: {x: 0, y: 0} snapOffsetDelta: {x: 0, y: 0}
snapCorner: 0 snapCorner: 3
id: UnityEditor.SceneViewCameraOverlay id: UnityEditor.SceneViewCameraOverlay
index: 8 index: 8
layout: 4 layout: 4
@ -703,9 +703,9 @@ MonoBehaviour:
m_PlayAudio: 0 m_PlayAudio: 0
m_AudioPlay: 0 m_AudioPlay: 0
m_Position: m_Position:
m_Target: {x: 1974.8225, y: 996.4484, z: 64.18413} m_Target: {x: 675.4541, y: 269.143, z: -281.1457}
speed: 2 speed: 2
m_Value: {x: 1974.8225, y: 996.4484, z: 64.18413} m_Value: {x: 675.4541, y: 269.143, z: -281.1457}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
@ -733,17 +733,17 @@ MonoBehaviour:
m_Size: {x: 1, y: 1} m_Size: {x: 1, y: 1}
yGrid: yGrid:
m_Fade: m_Fade:
m_Target: 1 m_Target: 0
speed: 2 speed: 2
m_Value: 1 m_Value: 0
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
m_Pivot: {x: 0, y: 0, z: 0} m_Pivot: {x: 0, y: 0, z: 0}
m_Size: {x: 1, y: 1} m_Size: {x: 1, y: 1}
zGrid: zGrid:
m_Fade: m_Fade:
m_Target: 0 m_Target: 1
speed: 2 speed: 2
m_Value: 0 m_Value: 1
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
m_Pivot: {x: 0, y: 0, z: 0} m_Pivot: {x: 0, y: 0, z: 0}
m_Size: {x: 1, y: 1} m_Size: {x: 1, y: 1}
@ -751,13 +751,13 @@ MonoBehaviour:
m_GridAxis: 1 m_GridAxis: 1
m_gridOpacity: 0.5 m_gridOpacity: 0.5
m_Rotation: m_Rotation:
m_Target: {x: 0.034477696, y: -0.029977823, z: 0.0010343323, w: 0.9989559} m_Target: {x: 0, y: 0, z: 0, w: 1}
speed: 2 speed: 2
m_Value: {x: 0.034477673, y: -0.029977804, z: 0.0010343317, w: 0.9989553} m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size: m_Size:
m_Target: 1270.9103 m_Target: 536.67914
speed: 2 speed: 2
m_Value: 1270.9103 m_Value: 536.67914
m_Ortho: m_Ortho:
m_Target: 1 m_Target: 1
speed: 2 speed: 2
@ -802,10 +802,10 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 289.6 x: 386.4
y: 73.6 y: 73.6
width: 880.4 width: 1174
height: 407 height: 577.4
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
@ -822,7 +822,7 @@ MonoBehaviour:
m_ShowGizmos: 0 m_ShowGizmos: 0
m_TargetDisplay: 0 m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0} m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 3840, y: 2160} m_TargetSize: {x: 1236, y: 695.5}
m_TextureFilterMode: 0 m_TextureFilterMode: 0
m_TextureHideFlags: 61 m_TextureHideFlags: 61
m_RenderIMGUI: 1 m_RenderIMGUI: 1
@ -831,16 +831,16 @@ MonoBehaviour:
m_VSyncEnabled: 0 m_VSyncEnabled: 0
m_Gizmos: 0 m_Gizmos: 0
m_Stats: 0 m_Stats: 0
m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 m_SelectedSizes: 01000000000000000000000000000000000000000000000000000000000000000000000000000000
m_ZoomArea: m_ZoomArea:
m_HRangeLocked: 0 m_HRangeLocked: 0
m_VRangeLocked: 0 m_VRangeLocked: 0
hZoomLockedByDefault: 0 hZoomLockedByDefault: 0
vZoomLockedByDefault: 0 vZoomLockedByDefault: 0
m_HBaseRangeMin: -1536 m_HBaseRangeMin: -494.4
m_HBaseRangeMax: 1536 m_HBaseRangeMax: 494.4
m_VBaseRangeMin: -864 m_VBaseRangeMin: -278.2
m_VBaseRangeMax: 864 m_VBaseRangeMax: 278.2
m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1 m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1 m_VAllowExceedBaseRangeMin: 1
@ -849,7 +849,7 @@ MonoBehaviour:
m_HSlider: 0 m_HSlider: 0
m_VSlider: 0 m_VSlider: 0
m_IgnoreScrollWheelUntilClicked: 0 m_IgnoreScrollWheelUntilClicked: 0
m_EnableMouseInput: 0 m_EnableMouseInput: 1
m_EnableSliderZoomHorizontal: 0 m_EnableSliderZoomHorizontal: 0
m_EnableSliderZoomVertical: 0 m_EnableSliderZoomVertical: 0
m_UniformScale: 1 m_UniformScale: 1
@ -858,26 +858,26 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 21 y: 21
width: 880.4 width: 1174
height: 386 height: 556.4
m_Scale: {x: 0.22337963, y: 0.22337963} m_Scale: {x: 1, y: 1}
m_Translation: {x: 440.2, y: 193} m_Translation: {x: 587, y: 278.2}
m_MarginLeft: 0 m_MarginLeft: 0
m_MarginRight: 0 m_MarginRight: 0
m_MarginTop: 0 m_MarginTop: 0
m_MarginBottom: 0 m_MarginBottom: 0
m_LastShownAreaInsideMargins: m_LastShownAreaInsideMargins:
serializedVersion: 2 serializedVersion: 2
x: -1970.6364 x: -587
y: -864 y: -278.2
width: 3941.2727 width: 1174
height: 1728 height: 556.4
m_MinimalGUI: 1 m_MinimalGUI: 1
m_defaultScale: 0.22337963 m_defaultScale: 1
m_LastWindowPixelSize: {x: 1100.5, y: 508.75} m_LastWindowPixelSize: {x: 1467.5, y: 721.75}
m_ClearInEditMode: 1 m_ClearInEditMode: 1
m_NoCameraWarning: 1 m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000 m_LowResolutionForAspectRatios: 00000000000000000000
m_XRRenderMode: 0 m_XRRenderMode: 0
m_RenderTexture: {fileID: 0} m_RenderTexture: {fileID: 0}
--- !u!114 &16 --- !u!114 &16
@ -901,9 +901,9 @@ MonoBehaviour:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 501.6 y: 672
width: 1171 width: 1561.4
height: 273.8 height: 391.40002
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0
@ -942,9 +942,9 @@ MonoBehaviour:
m_IsLocked: 0 m_IsLocked: 0
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: 305c0000 m_SelectedIDs: 425c0000
m_LastClickedID: 23600 m_LastClickedID: 23618
m_ExpandedIDs: 00000000305c0000325c000000ca9a3b m_ExpandedIDs: 00000000425c0000445c000000ca9a3b
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
@ -972,7 +972,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 00000000305c0000325c0000 m_ExpandedIDs: 00000000425c0000445c0000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
@ -997,9 +997,9 @@ MonoBehaviour:
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_ResourceFile: m_ResourceFile:
m_ListAreaState: m_ListAreaState:
m_SelectedInstanceIDs: 1c5a0000 m_SelectedInstanceIDs:
m_LastClickedInstanceID: 23068 m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 0 m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c6230000147d000078590000 m_ExpandedInstanceIDs: c6230000147d000078590000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
@ -1048,10 +1048,10 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 1172 x: 1562.4
y: 73.6 y: 73.6
width: 363 width: 484.59998
height: 701.8 height: 989.80005
m_SerializedDataModeController: m_SerializedDataModeController:
m_DataMode: 0 m_DataMode: 0
m_PreferredDataMode: 0 m_PreferredDataMode: 0

Loading…
Cancel
Save