diff --git a/LMC/Assets/A.prefab b/LMC/Assets/A.prefab index 6f4672c5..3bfaedb4 100644 --- a/LMC/Assets/A.prefab +++ b/LMC/Assets/A.prefab @@ -46,6 +46,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: Name: {fileID: 2155252081681785822} + Val: 0 --- !u!1 &3022990752737702646 GameObject: m_ObjectHideFlags: 0 @@ -384,7 +385,9 @@ MonoBehaviour: m_EditorClassIdentifier: CurrentAction: 0 TimeRotation: 0 - AngleRotation: -0.1 + AngleRotation: -160 + TimePassed: 0 + SumAngleRotate: 0 DoorIsMoving: 0 --- !u!1 &7115776030973179702 GameObject: @@ -397,7 +400,6 @@ GameObject: - component: {fileID: 2754178639470773891} - component: {fileID: 4448167961109024055} - component: {fileID: 1694139564342029656} - - component: {fileID: 1574267693367435642} m_Layer: 0 m_Name: Cabinet m_TagString: Untagged @@ -638,6 +640,10 @@ PrefabInstance: propertyPath: m_Name value: Cabinet objectReference: {fileID: 0} + - target: {fileID: 5298247443101524516, guid: fc03c732175eadc47933eb633f615c6b, type: 3} + propertyPath: AngleRotation + value: -160 + objectReference: {fileID: 0} - target: {fileID: 5556232703678627886, guid: fc03c732175eadc47933eb633f615c6b, type: 3} propertyPath: m_RootOrder value: 0 @@ -685,24 +691,5 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] - m_AddedComponents: - - targetCorrespondingSourceObject: {fileID: 5066660185504488084, guid: fc03c732175eadc47933eb633f615c6b, type: 3} - insertIndex: -1 - addedObject: {fileID: 1574267693367435642} + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fc03c732175eadc47933eb633f615c6b, type: 3} ---- !u!114 &1574267693367435642 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7115776030973179702} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ed4044aee80d39a4fa934c51059b8e5d, type: 3} - m_Name: - m_EditorClassIdentifier: - CurrentAction: 0 - TimeRotation: 0 - AngleRotation: -0.1 - DoorIsMoving: 0 diff --git a/LMC/Assets/DoorOpen.cs b/LMC/Assets/DoorOpen.cs index 8c3196a5..ebf98fb8 100644 --- a/LMC/Assets/DoorOpen.cs +++ b/LMC/Assets/DoorOpen.cs @@ -9,12 +9,12 @@ public class DoorAnimation : MonoBehaviour [SerializeField] public int CurrentAction = 0; public int TimeRotation = 0; - public float AngleRotation = -0.1f; + public float AngleRotation = -160.0f, TimePassed = 0.0f; public bool DoorIsMoving = false; void Start() { - + } public void OpenDoor() { @@ -29,27 +29,31 @@ public class DoorAnimation : MonoBehaviour void Update() { if(CurrentAction == 1) { - if(TimeRotation < 900) { - TimeRotation += 1; + if(TimePassed < 1.0f) { + float NewTime = Mathf.Min(1.0f - TimePassed, Time.deltaTime); + float AngleRotate = AngleRotation * NewTime; + transform.Rotate(0, 0, AngleRotate); + TimePassed += NewTime; DoorIsMoving = true; - transform.Rotate(0, 0, AngleRotation); } else { DoorIsMoving = false; CurrentAction = 0; - TimeRotation = 0; + TimePassed = 0.0f; } } else if(CurrentAction == 2) { - if(TimeRotation < 900) { - TimeRotation += 1; + if(TimePassed < 1.0f) { + float NewTime = Mathf.Min(1.0f - TimePassed, Time.deltaTime); + float AngleRotate = -AngleRotation * NewTime; + transform.Rotate(0, 0, AngleRotate); + TimePassed += NewTime; DoorIsMoving = true; - transform.Rotate(0, 0, -AngleRotation); } else { DoorIsMoving = false; CurrentAction = 0; - TimeRotation = 0; + TimePassed = 0.0f; } } } diff --git a/LMC/Assets/Initalize.cs b/LMC/Assets/Initalize.cs index 9dd8a460..fe032c7c 100644 --- a/LMC/Assets/Initalize.cs +++ b/LMC/Assets/Initalize.cs @@ -89,7 +89,6 @@ public class Initalize : MonoBehaviour void Op901() { // Code to summon number from Input Bracket - Debug.Log(AllInput.Peek() + " and " + AllInput.Count); AllOperation.Enqueue(Cope(100, AllInput.Peek(), 0)); FakeAccumulator = AllInput.Peek(); AllInput.Dequeue(); } @@ -143,6 +142,8 @@ public class Initalize : MonoBehaviour int[] EncodeOperation = new int[100]; int InstructionLength = InstructionText.Length, Counter = 0; for(int i = 0; i < InstructionLength - 2; i += 4) { + while(i < InstructionLength && !CheckDigit(InstructionText[i])) + ++i; EncodeOperation[Counter] = Convert.ToInt32(InstructionText.Substring(i, 3)); Counter += 1; } @@ -199,7 +200,7 @@ public class Initalize : MonoBehaviour if(ActionChange == 1) Door[IndexChange].OpenDoor(); else Door[IndexChange].CloseDoor(); } - if(Door[IndexChange].TimeRotation == 900) { + if(Door[IndexChange].TimePassed >= 1.0f) { ActionExisted = false; IndexChange = -1; ActionChange = -1; @@ -237,4 +238,8 @@ public class Initalize : MonoBehaviour } } } + + void LateUpdate() { + + } } diff --git a/LMC/Assets/Scenes/SampleScene.unity b/LMC/Assets/Scenes/SampleScene.unity index c248ea0c..4f054701 100644 --- a/LMC/Assets/Scenes/SampleScene.unity +++ b/LMC/Assets/Scenes/SampleScene.unity @@ -1324,7 +1324,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 17da3fd4e0129f5449ca3ef38c7c6467, type: 3} propertyPath: m_LocalPosition.x +<<<<<<< HEAD value: 60 +======= + value: 66.8 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 17da3fd4e0129f5449ca3ef38c7c6467, type: 3} propertyPath: m_LocalPosition.y @@ -4755,14 +4759,14 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 963194225} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 71.8, y: 49.9, z: -145.6} + m_LocalRotation: {x: 0.09587541, y: 0.24321201, z: -0.02416578, w: 0.9649207} + m_LocalPosition: {x: -12, y: 19.4, z: -38.9} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_LocalEulerAnglesHint: {x: 11.349, y: 28.294, z: 0} --- !u!1001 &966064722 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 b/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 new file mode 100644 index 00000000..944300f4 Binary files /dev/null and b/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 differ diff --git a/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 b/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 new file mode 100644 index 00000000..d7db22b7 Binary files /dev/null and b/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 differ diff --git a/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 b/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 new file mode 100644 index 00000000..42e6e58b Binary files /dev/null and b/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 differ diff --git a/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f b/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f new file mode 100644 index 00000000..89a85f16 Binary files /dev/null and b/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f differ diff --git a/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 b/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 new file mode 100644 index 00000000..75a0f900 Binary files /dev/null and b/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 differ diff --git a/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 b/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 new file mode 100644 index 00000000..8a36ac0c Binary files /dev/null and b/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 differ diff --git a/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 b/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 new file mode 100644 index 00000000..6916fdd2 Binary files /dev/null and b/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 differ diff --git a/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb b/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb new file mode 100644 index 00000000..2ef0f9ed Binary files /dev/null and b/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb differ diff --git a/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 b/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 new file mode 100644 index 00000000..a3e02e5a Binary files /dev/null and b/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 differ diff --git a/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b b/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b new file mode 100644 index 00000000..4bc0d244 Binary files /dev/null and b/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b differ diff --git a/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 b/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 new file mode 100644 index 00000000..1f720a87 Binary files /dev/null and b/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 differ diff --git a/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a b/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a new file mode 100644 index 00000000..468f064b Binary files /dev/null and b/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a differ diff --git a/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b b/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b new file mode 100644 index 00000000..cc46d677 Binary files /dev/null and b/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b differ diff --git a/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd b/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd new file mode 100644 index 00000000..8db579bc Binary files /dev/null and b/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd differ diff --git a/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d b/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d new file mode 100644 index 00000000..570f1af6 Binary files /dev/null and b/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d differ diff --git a/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 b/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 new file mode 100644 index 00000000..c3457053 Binary files /dev/null and b/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 differ diff --git a/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 b/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 new file mode 100644 index 00000000..9bfd0d79 Binary files /dev/null and b/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 differ diff --git a/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb b/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb new file mode 100644 index 00000000..037c8001 Binary files /dev/null and b/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb differ diff --git a/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 b/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 new file mode 100644 index 00000000..7c36b48a Binary files /dev/null and b/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 differ diff --git a/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b b/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b new file mode 100644 index 00000000..e691c95c Binary files /dev/null and b/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b differ diff --git a/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f b/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f new file mode 100644 index 00000000..06713500 Binary files /dev/null and b/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f differ diff --git a/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 b/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 new file mode 100644 index 00000000..d76351cf Binary files /dev/null and b/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 differ diff --git a/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 b/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 new file mode 100644 index 00000000..e407ade9 Binary files /dev/null and b/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 differ diff --git a/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 b/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 new file mode 100644 index 00000000..1a61faf2 Binary files /dev/null and b/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 differ diff --git a/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 b/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 new file mode 100644 index 00000000..bcb504d3 Binary files /dev/null and b/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 differ diff --git a/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d b/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d new file mode 100644 index 00000000..7b5c2152 Binary files /dev/null and b/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d differ diff --git a/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 b/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 new file mode 100644 index 00000000..f6ee88c8 Binary files /dev/null and b/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 differ diff --git a/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 b/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 new file mode 100644 index 00000000..deaf0f0f Binary files /dev/null and b/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 differ diff --git a/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 b/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 new file mode 100644 index 00000000..533f1671 Binary files /dev/null and b/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 differ diff --git a/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a b/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a new file mode 100644 index 00000000..9e905e51 Binary files /dev/null and b/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a differ diff --git a/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e b/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e new file mode 100644 index 00000000..f506a838 Binary files /dev/null and b/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e differ diff --git a/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 b/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 new file mode 100644 index 00000000..5e0a2dfc Binary files /dev/null and b/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 differ diff --git a/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec b/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec new file mode 100644 index 00000000..95e4bd33 Binary files /dev/null and b/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec differ diff --git a/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 b/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 new file mode 100644 index 00000000..dc565924 Binary files /dev/null and b/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 differ diff --git a/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 b/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 new file mode 100644 index 00000000..15809dfb Binary files /dev/null and b/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 differ diff --git a/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 b/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 new file mode 100644 index 00000000..251edefa Binary files /dev/null and b/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 differ diff --git a/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b b/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b new file mode 100644 index 00000000..207f41da Binary files /dev/null and b/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b differ diff --git a/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 b/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 new file mode 100644 index 00000000..76cc434c Binary files /dev/null and b/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 differ diff --git a/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 b/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 new file mode 100644 index 00000000..6ef11a54 Binary files /dev/null and b/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 differ diff --git a/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 b/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 new file mode 100644 index 00000000..bc201465 Binary files /dev/null and b/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 differ diff --git a/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab b/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab new file mode 100644 index 00000000..cb6bc43c Binary files /dev/null and b/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab differ diff --git a/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 b/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 new file mode 100644 index 00000000..4729a61c Binary files /dev/null and b/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 differ diff --git a/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be b/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be new file mode 100644 index 00000000..6356fe96 Binary files /dev/null and b/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be differ diff --git a/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c b/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c new file mode 100644 index 00000000..5d27ff79 Binary files /dev/null and b/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c differ diff --git a/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 b/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 new file mode 100644 index 00000000..ffdd05d3 Binary files /dev/null and b/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 differ diff --git a/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e b/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e new file mode 100644 index 00000000..5d65b40b Binary files /dev/null and b/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e differ diff --git a/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e b/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e new file mode 100644 index 00000000..88314f34 Binary files /dev/null and b/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e differ diff --git a/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 b/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 new file mode 100644 index 00000000..93ff935b Binary files /dev/null and b/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 differ diff --git a/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff b/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff new file mode 100644 index 00000000..424fd6f7 Binary files /dev/null and b/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff differ diff --git a/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d b/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d new file mode 100644 index 00000000..40626947 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d differ diff --git a/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 b/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 new file mode 100644 index 00000000..37c3b930 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 differ diff --git a/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 b/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 new file mode 100644 index 00000000..e7351ab3 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 differ diff --git a/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f b/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f new file mode 100644 index 00000000..a706d2ad Binary files /dev/null and b/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f differ diff --git a/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a b/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a new file mode 100644 index 00000000..3a6110a0 Binary files /dev/null and b/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a differ diff --git a/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 b/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 new file mode 100644 index 00000000..1ba32903 Binary files /dev/null and b/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 differ diff --git a/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b b/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b new file mode 100644 index 00000000..935f7f50 Binary files /dev/null and b/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b differ diff --git a/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 b/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 new file mode 100644 index 00000000..0260a3ff Binary files /dev/null and b/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 differ diff --git a/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e b/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e new file mode 100644 index 00000000..7029958b Binary files /dev/null and b/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e differ diff --git a/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b b/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b new file mode 100644 index 00000000..02599878 Binary files /dev/null and b/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b differ diff --git a/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 b/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 new file mode 100644 index 00000000..5ca5d6c2 Binary files /dev/null and b/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 differ diff --git a/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc b/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc new file mode 100644 index 00000000..8380c83c Binary files /dev/null and b/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc differ diff --git a/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f b/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f new file mode 100644 index 00000000..803d30ad Binary files /dev/null and b/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f differ diff --git a/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 b/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 new file mode 100644 index 00000000..a46f032d Binary files /dev/null and b/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 differ diff --git a/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b b/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b new file mode 100644 index 00000000..9efb0d19 Binary files /dev/null and b/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b differ diff --git a/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e b/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e new file mode 100644 index 00000000..8eed16fb Binary files /dev/null and b/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e differ diff --git a/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c b/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c new file mode 100644 index 00000000..ad3cb91f Binary files /dev/null and b/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c differ diff --git a/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f b/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f new file mode 100644 index 00000000..5465c131 Binary files /dev/null and b/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f differ diff --git a/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c b/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c new file mode 100644 index 00000000..f3fa9593 Binary files /dev/null and b/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c differ diff --git a/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 b/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 new file mode 100644 index 00000000..59caa020 Binary files /dev/null and b/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 differ diff --git a/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c b/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c new file mode 100644 index 00000000..0ce66ca3 Binary files /dev/null and b/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c differ diff --git a/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d b/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d new file mode 100644 index 00000000..28efe2c6 Binary files /dev/null and b/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d differ diff --git a/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 b/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 new file mode 100644 index 00000000..6d88cf05 Binary files /dev/null and b/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 differ diff --git a/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c b/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c new file mode 100644 index 00000000..3a1f8d48 Binary files /dev/null and b/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c differ diff --git a/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 b/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 new file mode 100644 index 00000000..06003c80 Binary files /dev/null and b/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 differ diff --git a/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 b/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 new file mode 100644 index 00000000..dcb91a92 Binary files /dev/null and b/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 differ diff --git a/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b b/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b new file mode 100644 index 00000000..3f459b34 Binary files /dev/null and b/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b differ diff --git a/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a b/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a new file mode 100644 index 00000000..cb4c14a1 Binary files /dev/null and b/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a differ diff --git a/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 b/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 new file mode 100644 index 00000000..92976f63 Binary files /dev/null and b/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 differ diff --git a/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 b/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 new file mode 100644 index 00000000..0f7c8b02 Binary files /dev/null and b/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 differ diff --git a/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 b/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 new file mode 100644 index 00000000..6096f94d Binary files /dev/null and b/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 differ diff --git a/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 b/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 new file mode 100644 index 00000000..ec3284e6 Binary files /dev/null and b/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 differ diff --git a/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed b/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed new file mode 100644 index 00000000..2ce0fd0d Binary files /dev/null and b/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed differ diff --git a/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b b/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b new file mode 100644 index 00000000..d2a32259 Binary files /dev/null and b/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b differ diff --git a/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 b/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 new file mode 100644 index 00000000..3e94f2a8 Binary files /dev/null and b/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 differ diff --git a/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da b/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da new file mode 100644 index 00000000..c6d6a717 Binary files /dev/null and b/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da differ diff --git a/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 b/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 new file mode 100644 index 00000000..6d1f951d Binary files /dev/null and b/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 differ diff --git a/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda b/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda new file mode 100644 index 00000000..d95e52e7 Binary files /dev/null and b/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda differ diff --git a/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 b/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 new file mode 100644 index 00000000..ef62fd5a Binary files /dev/null and b/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 differ diff --git a/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 b/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 new file mode 100644 index 00000000..751e2e2b Binary files /dev/null and b/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 differ diff --git a/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 b/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 new file mode 100644 index 00000000..fea6fa54 Binary files /dev/null and b/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 differ diff --git a/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 b/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 new file mode 100644 index 00000000..5ba29e39 Binary files /dev/null and b/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 differ diff --git a/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e b/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e new file mode 100644 index 00000000..3666e97e Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e differ diff --git a/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c b/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c new file mode 100644 index 00000000..1c2566d5 Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c differ diff --git a/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 b/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 new file mode 100644 index 00000000..f7b84158 Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 differ diff --git a/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 b/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 new file mode 100644 index 00000000..a2283c6c Binary files /dev/null and b/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 differ diff --git a/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 b/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 new file mode 100644 index 00000000..9555ba82 Binary files /dev/null and b/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 differ diff --git a/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 b/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 new file mode 100644 index 00000000..e512b431 Binary files /dev/null and b/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 differ diff --git a/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 b/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 new file mode 100644 index 00000000..07f0caf9 Binary files /dev/null and b/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 differ diff --git a/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f b/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f new file mode 100644 index 00000000..dbc7c517 Binary files /dev/null and b/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f differ diff --git a/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f b/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f new file mode 100644 index 00000000..a5bf0b56 Binary files /dev/null and b/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f differ diff --git a/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e b/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e new file mode 100644 index 00000000..b21e161e Binary files /dev/null and b/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e differ diff --git a/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 b/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 new file mode 100644 index 00000000..3670d996 Binary files /dev/null and b/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 differ diff --git a/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 b/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 new file mode 100644 index 00000000..b22e7aaa Binary files /dev/null and b/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 differ diff --git a/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 b/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 new file mode 100644 index 00000000..f3b2f2ee Binary files /dev/null and b/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 differ diff --git a/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 b/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 new file mode 100644 index 00000000..eafc42f6 Binary files /dev/null and b/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 differ diff --git a/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d b/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d new file mode 100644 index 00000000..ed96d3e1 Binary files /dev/null and b/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d differ diff --git a/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df b/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df new file mode 100644 index 00000000..eecfe4d0 Binary files /dev/null and b/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df differ diff --git a/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 b/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 new file mode 100644 index 00000000..b851e5bb Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 differ diff --git a/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 b/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 new file mode 100644 index 00000000..6207fac1 Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 differ diff --git a/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b b/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b new file mode 100644 index 00000000..6426f0eb Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b differ diff --git a/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c b/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c new file mode 100644 index 00000000..263cc9ba Binary files /dev/null and b/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c differ diff --git a/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 b/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 new file mode 100644 index 00000000..201a71cc Binary files /dev/null and b/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 differ diff --git a/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe b/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe new file mode 100644 index 00000000..b22c962e Binary files /dev/null and b/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe differ diff --git a/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f b/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f new file mode 100644 index 00000000..b831936e Binary files /dev/null and b/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f differ diff --git a/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 b/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 new file mode 100644 index 00000000..0a430e21 Binary files /dev/null and b/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 differ diff --git a/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 b/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 new file mode 100644 index 00000000..74a0050c Binary files /dev/null and b/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 differ diff --git a/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 b/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 new file mode 100644 index 00000000..cd6ba48c Binary files /dev/null and b/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 differ diff --git a/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 b/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 new file mode 100644 index 00000000..027e7db4 Binary files /dev/null and b/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 differ diff --git a/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 b/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 new file mode 100644 index 00000000..dd6e0dbf Binary files /dev/null and b/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 differ diff --git a/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 b/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 new file mode 100644 index 00000000..fdc39434 Binary files /dev/null and b/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 differ diff --git a/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 b/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 new file mode 100644 index 00000000..bb573814 Binary files /dev/null and b/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 differ diff --git a/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 b/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 new file mode 100644 index 00000000..dada7c95 Binary files /dev/null and b/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 differ diff --git a/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 b/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 new file mode 100644 index 00000000..8de2f69c Binary files /dev/null and b/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 differ diff --git a/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f b/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f new file mode 100644 index 00000000..92b152cd Binary files /dev/null and b/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f differ diff --git a/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 b/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 new file mode 100644 index 00000000..3c43a1ec Binary files /dev/null and b/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 differ diff --git a/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 b/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 new file mode 100644 index 00000000..ee9c2d73 Binary files /dev/null and b/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 differ diff --git a/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 b/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 new file mode 100644 index 00000000..52ae4fb1 Binary files /dev/null and b/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 differ diff --git a/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb b/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb new file mode 100644 index 00000000..ef4babef Binary files /dev/null and b/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb differ diff --git a/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f b/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f new file mode 100644 index 00000000..f2d127dd Binary files /dev/null and b/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f differ diff --git a/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 b/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 new file mode 100644 index 00000000..3dfef760 Binary files /dev/null and b/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 differ diff --git a/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff b/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff new file mode 100644 index 00000000..38bdb63f Binary files /dev/null and b/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff differ diff --git a/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e b/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e new file mode 100644 index 00000000..820b8e78 Binary files /dev/null and b/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e differ diff --git a/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da b/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da new file mode 100644 index 00000000..9d4e3a21 Binary files /dev/null and b/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da differ diff --git a/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da b/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da new file mode 100644 index 00000000..0e9a0ba8 Binary files /dev/null and b/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da differ diff --git a/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd b/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd new file mode 100644 index 00000000..e8ec878d Binary files /dev/null and b/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd differ diff --git a/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 b/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 new file mode 100644 index 00000000..d84de87c Binary files /dev/null and b/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 differ diff --git a/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 b/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 new file mode 100644 index 00000000..dcbb0eea Binary files /dev/null and b/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 differ diff --git a/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 b/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 new file mode 100644 index 00000000..e476cb7c Binary files /dev/null and b/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 differ diff --git a/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 b/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 new file mode 100644 index 00000000..b8c42576 Binary files /dev/null and b/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 differ diff --git a/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 b/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 new file mode 100644 index 00000000..c0ebcca4 Binary files /dev/null and b/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 differ diff --git a/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee b/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee new file mode 100644 index 00000000..e14ccecf Binary files /dev/null and b/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee differ diff --git a/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 b/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 new file mode 100644 index 00000000..fd128dbc Binary files /dev/null and b/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 differ diff --git a/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c b/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c new file mode 100644 index 00000000..d6dd659d Binary files /dev/null and b/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c differ diff --git a/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 b/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 new file mode 100644 index 00000000..4117c6e6 Binary files /dev/null and b/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 differ diff --git a/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd b/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd new file mode 100644 index 00000000..97d63bb2 Binary files /dev/null and b/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd differ diff --git a/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 b/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 new file mode 100644 index 00000000..c3a5e231 Binary files /dev/null and b/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 differ diff --git a/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d b/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d new file mode 100644 index 00000000..752e373e Binary files /dev/null and b/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d differ diff --git a/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b b/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b new file mode 100644 index 00000000..708a23a9 Binary files /dev/null and b/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b differ diff --git a/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 b/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 new file mode 100644 index 00000000..625610d0 Binary files /dev/null and b/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 differ diff --git a/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 b/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 new file mode 100644 index 00000000..7c64e8f5 Binary files /dev/null and b/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 differ diff --git a/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa b/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa new file mode 100644 index 00000000..7acd7fc3 Binary files /dev/null and b/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa differ diff --git a/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 b/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 new file mode 100644 index 00000000..e94a9bf2 Binary files /dev/null and b/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 differ diff --git a/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a b/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a new file mode 100644 index 00000000..52541a5e Binary files /dev/null and b/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a differ diff --git a/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf b/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf new file mode 100644 index 00000000..1cd80cfb Binary files /dev/null and b/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf differ diff --git a/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 b/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 new file mode 100644 index 00000000..2f59bf10 Binary files /dev/null and b/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 differ diff --git a/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 b/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 new file mode 100644 index 00000000..a5da525a Binary files /dev/null and b/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 differ diff --git a/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 b/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 new file mode 100644 index 00000000..cd2107d4 Binary files /dev/null and b/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 differ diff --git a/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a b/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a new file mode 100644 index 00000000..d9a02894 Binary files /dev/null and b/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a differ diff --git a/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 b/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 new file mode 100644 index 00000000..9b99678d Binary files /dev/null and b/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 differ diff --git a/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 b/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 new file mode 100644 index 00000000..30c49613 Binary files /dev/null and b/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 differ diff --git a/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d b/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d new file mode 100644 index 00000000..bacb71aa Binary files /dev/null and b/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d differ diff --git a/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 b/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 new file mode 100644 index 00000000..682998c2 Binary files /dev/null and b/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 differ diff --git a/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 b/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 new file mode 100644 index 00000000..4347538c Binary files /dev/null and b/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 differ diff --git a/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 b/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 new file mode 100644 index 00000000..c8570ab9 Binary files /dev/null and b/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 differ diff --git a/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 b/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 new file mode 100644 index 00000000..8d060a18 Binary files /dev/null and b/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 differ diff --git a/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 b/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 new file mode 100644 index 00000000..1bc5b87a Binary files /dev/null and b/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 differ diff --git a/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 b/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 new file mode 100644 index 00000000..1265ebfc Binary files /dev/null and b/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 differ diff --git a/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 b/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 new file mode 100644 index 00000000..70acdcf4 Binary files /dev/null and b/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 differ diff --git a/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd b/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd new file mode 100644 index 00000000..5bea217e Binary files /dev/null and b/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd differ diff --git a/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 b/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 new file mode 100644 index 00000000..7d2b19a2 Binary files /dev/null and b/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 differ diff --git a/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 b/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 new file mode 100644 index 00000000..db5ee97b Binary files /dev/null and b/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 differ diff --git a/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b b/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b new file mode 100644 index 00000000..b3bf1f10 Binary files /dev/null and b/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b differ diff --git a/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 b/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 new file mode 100644 index 00000000..5b66af8f Binary files /dev/null and b/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 differ diff --git a/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 b/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 new file mode 100644 index 00000000..0be929de Binary files /dev/null and b/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 differ diff --git a/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 b/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 new file mode 100644 index 00000000..052f72d7 Binary files /dev/null and b/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 differ diff --git a/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd b/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd new file mode 100644 index 00000000..baa87cfb Binary files /dev/null and b/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd differ diff --git a/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 b/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 new file mode 100644 index 00000000..408a1a5d Binary files /dev/null and b/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 differ diff --git a/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 b/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 new file mode 100644 index 00000000..b7ecb44a Binary files /dev/null and b/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 differ diff --git a/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 b/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 new file mode 100644 index 00000000..714b8616 Binary files /dev/null and b/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 differ diff --git a/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f b/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f new file mode 100644 index 00000000..ce7387ed Binary files /dev/null and b/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f differ diff --git a/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a b/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a new file mode 100644 index 00000000..e9c25aff Binary files /dev/null and b/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a differ diff --git a/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 b/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 new file mode 100644 index 00000000..ae1d8267 Binary files /dev/null and b/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 differ diff --git a/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 b/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 new file mode 100644 index 00000000..3d27d1f3 Binary files /dev/null and b/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 differ diff --git a/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 b/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 new file mode 100644 index 00000000..dd463234 Binary files /dev/null and b/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 differ diff --git a/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 b/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 new file mode 100644 index 00000000..8b7d2d76 Binary files /dev/null and b/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 differ diff --git a/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 b/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 new file mode 100644 index 00000000..44366680 Binary files /dev/null and b/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 differ diff --git a/LMC/Library/Bee/backend1.traceevents b/LMC/Library/Bee/backend1.traceevents index 92bdad37..87aeb71d 100644 --- a/LMC/Library/Bee/backend1.traceevents +++ b/LMC/Library/Bee/backend1.traceevents @@ -1,4 +1,5 @@ { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } +<<<<<<< HEAD ,{ "pid":12345, "tid":0, "ts":1689929104629307, "dur":2014, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} ,{ "pid":12345, "tid":0, "ts":1689929104631370, "dur":1368, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} ,{ "pid":12345, "tid":0, "ts":1689929104632749, "dur":245, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} @@ -438,4 +439,702 @@ ,{ "pid":12345, "tid":12, "ts":1689929104672757, "dur":334, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} ,{ "pid":12345, "tid":12, "ts":1689929104673091, "dur":441452, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} ,{ "pid":12345, "tid":0, "ts":1689929105117979, "dur":963, "ph":"X", "name": "ProfilerWriteOutput" } +======= +,{ "pid":12345, "tid":0, "ts":1689927256457076, "dur":74, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256457181, "dur":1437, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458629, "dur":230, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458928, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256460785, "dur":1395, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689927256463632, "dur":758, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689927256464783, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1689927256467703, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689927256459522, "dur":11259, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256470793, "dur":331487, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802281, "dur":271, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802552, "dur":89, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802801, "dur":57, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802874, "dur":1051, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689927256459543, "dur":11333, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256471386, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256471385, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256471530, "dur":1479, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":1, "ts":1689927256473011, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256473525, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256473992, "dur":1695, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256475908, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256476221, "dur":1847, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\EventTriggerType.cs" }} +,{ "pid":12345, "tid":1, "ts":1689927256473171, "dur":5062, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256478296, "dur":639, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256478935, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256479350, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256479441, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256480164, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256480705, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256480855, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256481010, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256482040, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482273, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482559, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482811, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483001, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483463, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483926, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256484293, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256459591, "dur":11415, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471072, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256471071, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_DDF441E8964B73A7.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471329, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471416, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471554, "dur":169, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1689927256471832, "dur":1719, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp2" }} +,{ "pid":12345, "tid":2, "ts":1689927256473552, "dur":438, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":2047, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\MemberUnitOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256476270, "dur":1451, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\GetMemberOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":3804, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256477883, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478015, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478299, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478929, "dur":528, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256479458, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256480754, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256480380, "dur":710, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689927256481223, "dur":146, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481369, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481449, "dur":605, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482054, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482301, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482584, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482848, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482989, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483463, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483914, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256484285, "dur":318000, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256459510, "dur":11313, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256470850, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256471050, "dur":275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471397, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471614, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471678, "dur":161, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471878, "dur":854, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256472936, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473090, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473244, "dur":204, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473448, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473756, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473921, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474119, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474330, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474519, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474680, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474862, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475083, "dur":206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475289, "dur":219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475508, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475757, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475985, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Welcome\\WelcomeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477056, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477231, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477401, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477572, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477739, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478047, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478324, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478951, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256479335, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256479448, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256479902, "dur":471, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256480425, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256480651, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256481388, "dur":59, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256481447, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482049, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482312, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482588, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482842, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482990, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256483441, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256483541, "dur":276, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256483925, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256484288, "dur":318076, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256459537, "dur":11312, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256470852, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471192, "dur":314, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256471506, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_1122BECC8220CC33.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471566, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":4, "ts":1689927256471797, "dur":1416, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1689927256473495, "dur":507, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\treeview\\AnimationTrackKeyDataSource.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256473227, "dur":840, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256474208, "dur":957, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Ports\\IUnitOutputPortDefinition.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256474068, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256475298, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476087, "dur":757, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Operators\\OperatorUtility.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256475560, "dur":1381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476942, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477126, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477288, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477456, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477608, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477763, "dur":393, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478156, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478298, "dur":657, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478955, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256479460, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256479694, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1689927256480422, "dur":276, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480710, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480813, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480948, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481229, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481337, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481460, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482038, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482282, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482587, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482845, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483018, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483451, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483924, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256484281, "dur":318031, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256459585, "dur":11413, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256471014, "dur":331, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll" }} +,{ "pid":12345, "tid":5, "ts":1689927256471003, "dur":345, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471390, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":5, "ts":1689927256471372, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471491, "dur":115, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471888, "dur":1724, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":638, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":856, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474470, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474719, "dur":267, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474986, "dur":243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475230, "dur":264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475494, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475812, "dur":412, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256476267, "dur":756, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageFormats\\OpenCover\\Model\\SummarySkippedEntity.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256476224, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477340, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477549, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477759, "dur":362, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478122, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478290, "dur":670, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478960, "dur":733, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256479693, "dur":707, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480405, "dur":311, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480805, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480943, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481236, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481370, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481454, "dur":588, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482042, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482275, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482589, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482821, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483015, "dur":386, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483450, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483925, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256484295, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256459619, "dur":11412, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471035, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256471217, "dur":307, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471549, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471669, "dur":209, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471904, "dur":1715, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1390, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1638, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475258, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475489, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475751, "dur":284, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256476260, "dur":710, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Playables\\DirectorControlPlayable.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256476035, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256477125, "dur":641, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\UI\\ScreenResolution.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256477036, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478164, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478299, "dur":654, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478953, "dur":399, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256479353, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256479823, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689927256480600, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480716, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480808, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480937, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481236, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481369, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481447, "dur":582, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482030, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482289, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482576, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482826, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483011, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483445, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483931, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256484260, "dur":12914, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256497175, "dur":305102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256459639, "dur":11429, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471072, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689927256471400, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471539, "dur":181, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1689927256471844, "dur":1714, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp2" }} +,{ "pid":12345, "tid":7, "ts":1689927256473985, "dur":1067, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\StartUpMethodExecutor.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256473559, "dur":1520, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475079, "dur":305, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475384, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475646, "dur":419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476272, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Evaluation\\ScheduleRuntimeClip.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256476065, "dur":843, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476908, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477114, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477346, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477525, "dur":216, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477741, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478016, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478309, "dur":643, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478952, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256479473, "dur":968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480593, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480717, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480842, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480950, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481210, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481363, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481450, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482045, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482312, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482562, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482845, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483002, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483452, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256484297, "dur":318057, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256459759, "dur":11323, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256471383, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":8, "ts":1689927256471381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689927256471507, "dur":2091, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":643, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":898, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474499, "dur":250, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474749, "dur":270, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475019, "dur":297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475317, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256476259, "dur":913, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Macros\\Macro.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256475576, "dur":1596, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477173, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477429, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477650, "dur":673, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478324, "dur":618, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478943, "dur":532, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256479475, "dur":964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480466, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480551, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480607, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480709, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480815, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480930, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481238, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481383, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481449, "dur":598, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482048, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482267, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482571, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482833, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483009, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483448, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483931, "dur":365, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256484296, "dur":318039, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256459781, "dur":11385, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471327, "dur":76, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_35574052A2A89F4F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256471444, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471531, "dur":1629, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":9, "ts":1689927256473176, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256473536, "dur":469, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256474930, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnhandledLogMessageException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475017, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnityTestTimeoutException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475640, "dur":474, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\IAsyncTestAssemblyBuilder.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256476254, "dur":1172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\Runner\\RestoreTestContextAfterDomainReload.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477837, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\IScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477890, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\PlayerTestAssemblyProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256478026, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\ScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256473161, "dur":5023, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478314, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478393, "dur":420, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478880, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478976, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256479327, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256479543, "dur":1610, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256481242, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256481400, "dur":1088, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482559, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256482642, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482995, "dur":460, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483455, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483954, "dur":306, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256484260, "dur":226330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256710594, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710592, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710786, "dur":1167, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256711957, "dur":90310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256459816, "dur":11356, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471315, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471545, "dur":1195, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_1202549BEDFB9D5D.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256472744, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256473002, "dur":403, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473405, "dur":351, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473757, "dur":257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256474203, "dur":965, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Events\\EventUnitWidget.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256474014, "dur":1792, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256475833, "dur":2233, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsObjectAttribute.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256475806, "dur":2410, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478216, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478278, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":10, "ts":1689927256478339, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478928, "dur":537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256479465, "dur":385, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256479891, "dur":760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1689927256480652, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480794, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480964, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481223, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481339, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481472, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482040, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482290, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482548, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482842, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482988, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483464, "dur":426, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483918, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256484273, "dur":317988, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256459839, "dur":11362, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471384, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471498, "dur":91, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_56AFA6E27C7D5F59.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256471683, "dur":1075, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472857, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472940, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473082, "dur":322, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473532, "dur":2137, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineProjectSettings.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256473404, "dur":2331, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256475735, "dur":518, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256476272, "dur":1476, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.settings-manager@2.0.1\\Editor\\SettingsGUILayout.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256476254, "dur":1745, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256477999, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478315, "dur":616, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478931, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479328, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256479404, "dur":560, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479970, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256480370, "dur":521, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256480926, "dur":901, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256481833, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256481915, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256482277, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482574, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482818, "dur":185, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483003, "dur":446, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483450, "dur":436, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483924, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256484272, "dur":317993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256459924, "dur":11305, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256471379, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689927256471378, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689927256471669, "dur":1325, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp2" }} +,{ "pid":12345, "tid":12, "ts":1689927256472994, "dur":214, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473209, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473362, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473505, "dur":372, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473988, "dur":972, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\UnifiedVariableUnitDescriptor.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256474960, "dur":723, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\SetVariableOption.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256473877, "dur":1920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256476263, "dur":1537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\Inspector\\InspectorAdaptiveWidthAttribute.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256475797, "dur":2033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256477964, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478317, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478884, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256479485, "dur":966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480452, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480587, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480789, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481057, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481224, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481351, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481467, "dur":576, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482043, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482285, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482563, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482830, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483001, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483457, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483911, "dur":375, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256484286, "dur":318006, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256459945, "dur":11457, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471418, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471676, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2" }} +,{ "pid":12345, "tid":13, "ts":1689927256471897, "dur":1710, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":1729, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":2253, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476265, "dur":633, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Collections\\NonNullableCollection.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256475862, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476936, "dur":239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477175, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477352, "dur":89, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477441, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477608, "dur":609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478217, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478320, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478916, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256479464, "dur":493, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":13, "ts":1689927256479958, "dur":628, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256480591, "dur":562, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":13, "ts":1689927256481153, "dur":261, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256481472, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482017, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482288, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482575, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482802, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483008, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483443, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483923, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256484272, "dur":317987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256459964, "dur":11446, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471420, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471582, "dur":129, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2" }} +,{ "pid":12345, "tid":14, "ts":1689927256471849, "dur":1734, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":664, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":885, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474469, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474737, "dur":358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256475096, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256476083, "dur":1948, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Description\\IGraphDescription.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256475290, "dur":2933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478224, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478322, "dur":583, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478906, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256479466, "dur":967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480523, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480716, "dur":491, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481215, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481376, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481464, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482066, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482305, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482586, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482803, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483003, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483447, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483906, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256484298, "dur":317995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256460082, "dur":11346, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256471450, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll" }} +,{ "pid":12345, "tid":15, "ts":1689927256471433, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256471706, "dur":1865, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":15, "ts":1689927256473572, "dur":630, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474202, "dur":210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474412, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474595, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474768, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":1028, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\InitializeAfterPluginsAttribute.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256476211, "dur":1699, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_5.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":2990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256477986, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478310, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478923, "dur":538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256479461, "dur":443, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256479917, "dur":747, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":15, "ts":1689927256480665, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480820, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480958, "dur":183, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481144, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481227, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481360, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481456, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482052, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482302, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482582, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482849, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483465, "dur":406, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256484297, "dur":318011, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256460100, "dur":11337, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256471447, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll" }} +,{ "pid":12345, "tid":16, "ts":1689927256471439, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C9C18B6F155787CC.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256471583, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256471681, "dur":1247, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256472956, "dur":208, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473165, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473425, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474083, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474279, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474461, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474633, "dur":197, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474830, "dur":187, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475139, "dur":535, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqCore\\Changelog_1_4_6.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256475017, "dur":727, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475745, "dur":405, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476270, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_StyleSheet.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256476151, "dur":756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476907, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477072, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477229, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477386, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477683, "dur":522, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478205, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478301, "dur":642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478943, "dur":364, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256479331, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256479451, "dur":757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689927256480209, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480544, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480618, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480804, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480957, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481162, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481216, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481358, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481465, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482028, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482297, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482547, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482852, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483464, "dur":411, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483875, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483931, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256484292, "dur":318009, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256460192, "dur":11253, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256471592, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":17, "ts":1689927256471829, "dur":1676, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":17, "ts":1689927256473507, "dur":640, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474148, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474361, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474531, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474688, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474852, "dur":431, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475284, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475480, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475685, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475917, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256476220, "dur":1800, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ColorGradient.cs" }} +,{ "pid":12345, "tid":17, "ts":1689927256476192, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478175, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478317, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478919, "dur":564, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256479483, "dur":972, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480455, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480606, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480724, "dur":84, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480809, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480951, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481214, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481376, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481461, "dur":587, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482049, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482291, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482561, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482839, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482990, "dur":470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483460, "dur":455, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483915, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256484284, "dur":317979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256460213, "dur":11239, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256471484, "dur":218, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689927256471729, "dur":90, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256471881, "dur":1708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256473590, "dur":1399, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256473589, "dur":1583, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475172, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475357, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475569, "dur":233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475995, "dur":2027, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Internal\\fsOption.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256475802, "dur":2242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478044, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478309, "dur":624, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478933, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479315, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479486, "dur":960, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480447, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480583, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480701, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480822, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480925, "dur":447, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481380, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481459, "dur":592, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482052, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482304, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482581, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482847, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483000, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483459, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483877, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483934, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256484259, "dur":12100, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256496362, "dur":653, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256497016, "dur":305263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256460232, "dur":11226, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256471579, "dur":125, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":19, "ts":1689927256471714, "dur":1165, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":19, "ts":1689927256472959, "dur":269, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473229, "dur":254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473483, "dur":330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473813, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":980, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Nesting\\GraphInputAnalyser.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":1189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475176, "dur":337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475513, "dur":560, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476266, "dur":570, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Animation\\AnimationTrack.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256476073, "dur":812, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476885, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477083, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477402, "dur":509, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\MultipleDisplayUtilities.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256477245, "dur":666, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477935, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477995, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478316, "dur":604, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478920, "dur":549, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256479470, "dur":989, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480460, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480563, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480615, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480723, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480821, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480924, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256481244, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256481474, "dur":1285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256482814, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256482897, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483415, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256483533, "dur":343, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483927, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484001, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256484276, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484348, "dur":236, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256485238, "dur":223989, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256710587, "dur":90364, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256710586, "dur":90367, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256800997, "dur":1161, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":20, "ts":1689927256460256, "dur":11251, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256471523, "dur":1991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":20, "ts":1689927256473515, "dur":342, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256473858, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256474206, "dur":1814, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\SubgraphUnit.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256474060, "dur":2096, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256476183, "dur":1888, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ScrollbarEventHandler.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256476156, "dur":2128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478284, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478940, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256479358, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256480755, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\CheckinProgress.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256479537, "dur":1757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256481375, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256481508, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256482035, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482282, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482546, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482818, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483014, "dur":442, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483456, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483905, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256484298, "dur":317984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256806556, "dur":1911, "ph":"X", "name": "ProfilerWriteOutput" } +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 , \ No newline at end of file diff --git a/LMC/Library/Bee/fullprofile.json b/LMC/Library/Bee/fullprofile.json index f517d29e..f6aedf2d 100644 --- a/LMC/Library/Bee/fullprofile.json +++ b/LMC/Library/Bee/fullprofile.json @@ -6,6 +6,7 @@ }, "traceEvents":[ +<<<<<<< HEAD { "pid": 4260, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, { "pid": 4260, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, { "pid": 4260, "tid": 1911, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, @@ -821,6 +822,1090 @@ ,{ "pid": 4260, "tid": 1911, "ts": 1689929105139718, "dur": 2324, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, { "pid": 4260, "tid": 1911, "ts": 1689929105142117, "dur": 13734, "ph": "X", "name": "backend1.traceevents", "args": {} }, { "pid": 4260, "tid": 1911, "ts": 1689929105134605, "dur": 22119, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +======= +{ "pid": 28512, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, +{ "pid": 28512, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, +{ "pid": 28512, "tid": 1242, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256818081, "dur": 607, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256821957, "dur": 927, "ph": "X", "name": "Thread Pool Worker", "args": {} }, +{ "pid": 28512, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, +{ "pid": 28512, "tid": 1, "ts": 1689927256443933, "dur": 4511, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 28512, "tid": 1, "ts": 1689927256448450, "dur": 18481, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 28512, "tid": 1, "ts": 1689927256466940, "dur": 28688, "ph": "X", "name": "WriteJson", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256822890, "dur": 10, "ph": "X", "name": "", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256442248, "dur": 17920, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256460171, "dur": 349481, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256461023, "dur": 2431, "ph": "X", "name": "ReadAsync 0", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256463462, "dur": 1273, "ph": "X", "name": "ProcessMessages 20485", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256464738, "dur": 256, "ph": "X", "name": "ReadAsync 20485", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256464997, "dur": 12, "ph": "X", "name": "ProcessMessages 20512", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465010, "dur": 27, "ph": "X", "name": "ReadAsync 20512", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465040, "dur": 17, "ph": "X", "name": "ReadAsync 476", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465058, "dur": 16, "ph": "X", "name": "ReadAsync 282", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465077, "dur": 18, "ph": "X", "name": "ReadAsync 101", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465097, "dur": 18, "ph": "X", "name": "ReadAsync 257", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465117, "dur": 65, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465184, "dur": 172, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465367, "dur": 1, "ph": "X", "name": "ProcessMessages 304", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465369, "dur": 58, "ph": "X", "name": "ReadAsync 304", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465429, "dur": 2, "ph": "X", "name": "ProcessMessages 2417", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465433, "dur": 19, "ph": "X", "name": "ReadAsync 2417", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465455, "dur": 23, "ph": "X", "name": "ReadAsync 334", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465483, "dur": 1, "ph": "X", "name": "ProcessMessages 288", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465485, "dur": 23, "ph": "X", "name": "ReadAsync 288", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465511, "dur": 18, "ph": "X", "name": "ReadAsync 435", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465530, "dur": 18, "ph": "X", "name": "ReadAsync 222", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465550, "dur": 61, "ph": "X", "name": "ReadAsync 357", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465614, "dur": 1, "ph": "X", "name": "ProcessMessages 60", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465616, "dur": 38, "ph": "X", "name": "ReadAsync 60", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465657, "dur": 18, "ph": "X", "name": "ReadAsync 1065", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465677, "dur": 18, "ph": "X", "name": "ReadAsync 509", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465697, "dur": 16, "ph": "X", "name": "ReadAsync 269", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465716, "dur": 17, "ph": "X", "name": "ReadAsync 235", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465735, "dur": 17, "ph": "X", "name": "ReadAsync 343", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465755, "dur": 17, "ph": "X", "name": "ReadAsync 314", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465775, "dur": 16, "ph": "X", "name": "ReadAsync 280", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465794, "dur": 18, "ph": "X", "name": "ReadAsync 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465813, "dur": 1, "ph": "X", "name": "ProcessMessages 126", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465824, "dur": 35, "ph": "X", "name": "ReadAsync 126", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465862, "dur": 4, "ph": "X", "name": "ProcessMessages 493", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465868, "dur": 25, "ph": "X", "name": "ReadAsync 493", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465896, "dur": 14, "ph": "X", "name": "ReadAsync 411", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465912, "dur": 15, "ph": "X", "name": "ReadAsync 131", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465928, "dur": 16, "ph": "X", "name": "ReadAsync 188", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465946, "dur": 16, "ph": "X", "name": "ReadAsync 167", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465965, "dur": 15, "ph": "X", "name": "ReadAsync 176", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465982, "dur": 13, "ph": "X", "name": "ReadAsync 207", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465997, "dur": 14, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466014, "dur": 16, "ph": "X", "name": "ReadAsync 40", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466032, "dur": 16, "ph": "X", "name": "ReadAsync 275", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466050, "dur": 20, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466074, "dur": 1, "ph": "X", "name": "ProcessMessages 161", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466076, "dur": 26, "ph": "X", "name": "ReadAsync 161", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466104, "dur": 15, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466122, "dur": 14, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466138, "dur": 17, "ph": "X", "name": "ReadAsync 132", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466157, "dur": 18, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466177, "dur": 13, "ph": "X", "name": "ReadAsync 260", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466192, "dur": 14, "ph": "X", "name": "ReadAsync 71", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466208, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466232, "dur": 14, "ph": "X", "name": "ReadAsync 339", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466248, "dur": 14, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466264, "dur": 13, "ph": "X", "name": "ReadAsync 137", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466279, "dur": 13, "ph": "X", "name": "ReadAsync 233", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466294, "dur": 13, "ph": "X", "name": "ReadAsync 192", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466309, "dur": 14, "ph": "X", "name": "ReadAsync 138", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466325, "dur": 13, "ph": "X", "name": "ReadAsync 137", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466340, "dur": 12, "ph": "X", "name": "ReadAsync 155", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466354, "dur": 17, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466373, "dur": 15, "ph": "X", "name": "ReadAsync 250", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466390, "dur": 13, "ph": "X", "name": "ReadAsync 235", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466405, "dur": 23, "ph": "X", "name": "ReadAsync 83", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466430, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466450, "dur": 20, "ph": "X", "name": "ReadAsync 340", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466474, "dur": 14, "ph": "X", "name": "ReadAsync 358", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466489, "dur": 15, "ph": "X", "name": "ReadAsync 157", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466506, "dur": 16, "ph": "X", "name": "ReadAsync 192", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466524, "dur": 15, "ph": "X", "name": "ReadAsync 229", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466541, "dur": 19, "ph": "X", "name": "ReadAsync 93", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466561, "dur": 15, "ph": "X", "name": "ReadAsync 260", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466579, "dur": 120, "ph": "X", "name": "ReadAsync 256", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466701, "dur": 1, "ph": "X", "name": "ProcessMessages 139", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466703, "dur": 31, "ph": "X", "name": "ReadAsync 139", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466735, "dur": 1, "ph": "X", "name": "ProcessMessages 1498", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466737, "dur": 15, "ph": "X", "name": "ReadAsync 1498", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466754, "dur": 14, "ph": "X", "name": "ReadAsync 174", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466770, "dur": 16, "ph": "X", "name": "ReadAsync 156", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466788, "dur": 14, "ph": "X", "name": "ReadAsync 125", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466804, "dur": 14, "ph": "X", "name": "ReadAsync 189", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466819, "dur": 12, "ph": "X", "name": "ReadAsync 220", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466834, "dur": 19, "ph": "X", "name": "ReadAsync 78", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466855, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466879, "dur": 18, "ph": "X", "name": "ReadAsync 340", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466899, "dur": 23, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466924, "dur": 24, "ph": "X", "name": "ReadAsync 282", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466950, "dur": 17, "ph": "X", "name": "ReadAsync 324", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466969, "dur": 17, "ph": "X", "name": "ReadAsync 172", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466988, "dur": 17, "ph": "X", "name": "ReadAsync 221", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467007, "dur": 18, "ph": "X", "name": "ReadAsync 199", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467027, "dur": 17, "ph": "X", "name": "ReadAsync 207", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467046, "dur": 16, "ph": "X", "name": "ReadAsync 238", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467064, "dur": 271, "ph": "X", "name": "ReadAsync 81", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467337, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467339, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467367, "dur": 1, "ph": "X", "name": "ProcessMessages 914", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467369, "dur": 16, "ph": "X", "name": "ReadAsync 914", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467388, "dur": 15, "ph": "X", "name": "ReadAsync 205", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467405, "dur": 14, "ph": "X", "name": "ReadAsync 140", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467421, "dur": 15, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467437, "dur": 14, "ph": "X", "name": "ReadAsync 208", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467454, "dur": 19, "ph": "X", "name": "ReadAsync 106", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467475, "dur": 14, "ph": "X", "name": "ReadAsync 256", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467492, "dur": 16, "ph": "X", "name": "ReadAsync 146", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467509, "dur": 16, "ph": "X", "name": "ReadAsync 176", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467528, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467552, "dur": 20, "ph": "X", "name": "ReadAsync 343", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467575, "dur": 23, "ph": "X", "name": "ReadAsync 241", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467600, "dur": 17, "ph": "X", "name": "ReadAsync 285", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467618, "dur": 17, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467637, "dur": 17, "ph": "X", "name": "ReadAsync 221", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467656, "dur": 18, "ph": "X", "name": "ReadAsync 194", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467676, "dur": 79, "ph": "X", "name": "ReadAsync 172", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467759, "dur": 1, "ph": "X", "name": "ProcessMessages 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467761, "dur": 50, "ph": "X", "name": "ReadAsync 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467813, "dur": 1, "ph": "X", "name": "ProcessMessages 987", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467816, "dur": 23, "ph": "X", "name": "ReadAsync 987", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467841, "dur": 18, "ph": "X", "name": "ReadAsync 372", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467861, "dur": 18, "ph": "X", "name": "ReadAsync 210", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467882, "dur": 17, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467901, "dur": 18, "ph": "X", "name": "ReadAsync 118", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467922, "dur": 18, "ph": "X", "name": "ReadAsync 174", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467942, "dur": 19, "ph": "X", "name": "ReadAsync 290", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467963, "dur": 20, "ph": "X", "name": "ReadAsync 242", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467985, "dur": 21, "ph": "X", "name": "ReadAsync 86", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468008, "dur": 18, "ph": "X", "name": "ReadAsync 150", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468028, "dur": 18, "ph": "X", "name": "ReadAsync 246", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468048, "dur": 18, "ph": "X", "name": "ReadAsync 321", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468069, "dur": 17, "ph": "X", "name": "ReadAsync 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468088, "dur": 18, "ph": "X", "name": "ReadAsync 219", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468108, "dur": 17, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468128, "dur": 18, "ph": "X", "name": "ReadAsync 300", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468147, "dur": 19, "ph": "X", "name": "ReadAsync 130", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468168, "dur": 17, "ph": "X", "name": "ReadAsync 311", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468188, "dur": 16, "ph": "X", "name": "ReadAsync 257", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468206, "dur": 16, "ph": "X", "name": "ReadAsync 94", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468224, "dur": 17, "ph": "X", "name": "ReadAsync 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468243, "dur": 18, "ph": "X", "name": "ReadAsync 211", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468263, "dur": 17, "ph": "X", "name": "ReadAsync 244", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468282, "dur": 18, "ph": "X", "name": "ReadAsync 261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468303, "dur": 26, "ph": "X", "name": "ReadAsync 86", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468332, "dur": 1, "ph": "X", "name": "ProcessMessages 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468334, "dur": 98, "ph": "X", "name": "ReadAsync 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468435, "dur": 33, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468470, "dur": 1, "ph": "X", "name": "ProcessMessages 1079", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468472, "dur": 21, "ph": "X", "name": "ReadAsync 1079", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468495, "dur": 23, "ph": "X", "name": "ReadAsync 238", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468519, "dur": 17, "ph": "X", "name": "ReadAsync 377", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468539, "dur": 18, "ph": "X", "name": "ReadAsync 217", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468559, "dur": 57, "ph": "X", "name": "ReadAsync 227", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468623, "dur": 1, "ph": "X", "name": "ProcessMessages 197", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468626, "dur": 39, "ph": "X", "name": "ReadAsync 197", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468667, "dur": 1, "ph": "X", "name": "ProcessMessages 835", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468670, "dur": 28, "ph": "X", "name": "ReadAsync 835", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468701, "dur": 21, "ph": "X", "name": "ReadAsync 453", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468733, "dur": 18, "ph": "X", "name": "ReadAsync 342", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468752, "dur": 30, "ph": "X", "name": "ReadAsync 195", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468784, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468805, "dur": 18, "ph": "X", "name": "ReadAsync 242", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468825, "dur": 18, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468846, "dur": 18, "ph": "X", "name": "ReadAsync 185", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468865, "dur": 22, "ph": "X", "name": "ReadAsync 190", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468889, "dur": 16, "ph": "X", "name": "ReadAsync 271", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468907, "dur": 18, "ph": "X", "name": "ReadAsync 21", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468927, "dur": 18, "ph": "X", "name": "ReadAsync 246", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468948, "dur": 18, "ph": "X", "name": "ReadAsync 204", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468969, "dur": 19, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468989, "dur": 18, "ph": "X", "name": "ReadAsync 293", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469009, "dur": 17, "ph": "X", "name": "ReadAsync 198", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469028, "dur": 17, "ph": "X", "name": "ReadAsync 173", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469048, "dur": 18, "ph": "X", "name": "ReadAsync 146", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469067, "dur": 20, "ph": "X", "name": "ReadAsync 227", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469089, "dur": 17, "ph": "X", "name": "ReadAsync 196", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469108, "dur": 16, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469126, "dur": 18, "ph": "X", "name": "ReadAsync 124", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469146, "dur": 18, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469166, "dur": 18, "ph": "X", "name": "ReadAsync 255", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469186, "dur": 17, "ph": "X", "name": "ReadAsync 268", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469205, "dur": 18, "ph": "X", "name": "ReadAsync 87", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469225, "dur": 20, "ph": "X", "name": "ReadAsync 226", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469248, "dur": 18, "ph": "X", "name": "ReadAsync 208", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469268, "dur": 20, "ph": "X", "name": "ReadAsync 177", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469291, "dur": 1, "ph": "X", "name": "ProcessMessages 191", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469294, "dur": 33, "ph": "X", "name": "ReadAsync 191", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469329, "dur": 1, "ph": "X", "name": "ProcessMessages 265", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469331, "dur": 17, "ph": "X", "name": "ReadAsync 265", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469352, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469374, "dur": 17, "ph": "X", "name": "ReadAsync 396", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469394, "dur": 72, "ph": "X", "name": "ReadAsync 332", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469469, "dur": 1, "ph": "X", "name": "ProcessMessages 223", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469472, "dur": 43, "ph": "X", "name": "ReadAsync 223", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469517, "dur": 1, "ph": "X", "name": "ProcessMessages 1261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469520, "dur": 21, "ph": "X", "name": "ReadAsync 1261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469543, "dur": 15, "ph": "X", "name": "ReadAsync 347", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469560, "dur": 17, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469580, "dur": 19, "ph": "X", "name": "ReadAsync 269", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469603, "dur": 17, "ph": "X", "name": "ReadAsync 232", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469622, "dur": 17, "ph": "X", "name": "ReadAsync 244", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469640, "dur": 1, "ph": "X", "name": "ProcessMessages 253", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469642, "dur": 19, "ph": "X", "name": "ReadAsync 253", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469663, "dur": 19, "ph": "X", "name": "ReadAsync 225", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469684, "dur": 32, "ph": "X", "name": "ReadAsync 184", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469719, "dur": 1, "ph": "X", "name": "ProcessMessages 266", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469721, "dur": 84, "ph": "X", "name": "ReadAsync 266", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469808, "dur": 1, "ph": "X", "name": "ProcessMessages 598", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469811, "dur": 83, "ph": "X", "name": "ReadAsync 598", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469895, "dur": 1, "ph": "X", "name": "ProcessMessages 995", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469897, "dur": 3095, "ph": "X", "name": "ReadAsync 995", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256472995, "dur": 3, "ph": "X", "name": "ProcessMessages 857", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473000, "dur": 333, "ph": "X", "name": "ReadAsync 857", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473336, "dur": 319, "ph": "X", "name": "ProcessMessages 20486", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473657, "dur": 46, "ph": "X", "name": "ReadAsync 20486", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473706, "dur": 3, "ph": "X", "name": "ProcessMessages 468", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473710, "dur": 48, "ph": "X", "name": "ReadAsync 468", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473762, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473765, "dur": 25, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473792, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473794, "dur": 21, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473819, "dur": 284, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474105, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474124, "dur": 145, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474273, "dur": 1, "ph": "X", "name": "ProcessMessages 144", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474275, "dur": 4580, "ph": "X", "name": "ReadAsync 144", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478861, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478865, "dur": 55, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478923, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478925, "dur": 99, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479027, "dur": 24, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479053, "dur": 429, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479485, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479487, "dur": 81, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479571, "dur": 1, "ph": "X", "name": "ProcessMessages 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479574, "dur": 34, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479610, "dur": 268, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479882, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479884, "dur": 53, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479940, "dur": 21, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479962, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479964, "dur": 74, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480041, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480064, "dur": 70, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480138, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480158, "dur": 117, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480278, "dur": 49, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480331, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480334, "dur": 86, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480422, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480442, "dur": 44, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480487, "dur": 15, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480504, "dur": 15, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480522, "dur": 56, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480580, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480599, "dur": 391, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480995, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480997, "dur": 33, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481031, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481032, "dur": 18, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481054, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481075, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481094, "dur": 21, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481117, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481118, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481138, "dur": 17, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481157, "dur": 17, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481176, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481195, "dur": 17, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481214, "dur": 83, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481302, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481305, "dur": 89, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481395, "dur": 1, "ph": "X", "name": "ProcessMessages 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481396, "dur": 33, "ph": "X", "name": "ReadAsync 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481433, "dur": 2, "ph": "X", "name": "ProcessMessages 96", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481436, "dur": 38, "ph": "X", "name": "ReadAsync 96", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481477, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481499, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481519, "dur": 37, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481558, "dur": 24, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481585, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481612, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481640, "dur": 31, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481675, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481678, "dur": 49, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481733, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481763, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481790, "dur": 37, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481831, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481834, "dur": 35, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481872, "dur": 22, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481897, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481923, "dur": 26, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481949, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481952, "dur": 19, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481972, "dur": 25, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482001, "dur": 84, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482087, "dur": 22, "ph": "X", "name": "ReadAsync 28", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482112, "dur": 16, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482129, "dur": 469, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482602, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482604, "dur": 56, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482661, "dur": 1, "ph": "X", "name": "ProcessMessages 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482663, "dur": 20, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482685, "dur": 216, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482905, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482906, "dur": 42, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482950, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482952, "dur": 230, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483187, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483190, "dur": 95, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483289, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483291, "dur": 20, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483313, "dur": 129, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483447, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483449, "dur": 25, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483476, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483478, "dur": 555, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484036, "dur": 2, "ph": "X", "name": "ProcessMessages 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484039, "dur": 43, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484087, "dur": 1, "ph": "X", "name": "ProcessMessages 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484090, "dur": 42, "ph": "X", "name": "ReadAsync 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484134, "dur": 61, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484198, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484200, "dur": 308, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484513, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484515, "dur": 117, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484634, "dur": 1, "ph": "X", "name": "ProcessMessages 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484636, "dur": 31, "ph": "X", "name": "ReadAsync 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484671, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484673, "dur": 218, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484895, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484897, "dur": 43, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484946, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484948, "dur": 24, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484973, "dur": 3422, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256488406, "dur": 632, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256489042, "dur": 220788, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709837, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709840, "dur": 35, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709876, "dur": 6953, "ph": "X", "name": "ProcessMessages 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716834, "dur": 68, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716907, "dur": 22, "ph": "X", "name": "ProcessMessages 66", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716930, "dur": 84693, "ph": "X", "name": "ReadAsync 66", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801629, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801631, "dur": 26, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801658, "dur": 1, "ph": "X", "name": "ProcessMessages 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801660, "dur": 1099, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802764, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802767, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802803, "dur": 18, "ph": "X", "name": "ProcessMessages 50", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802821, "dur": 658, "ph": "X", "name": "ReadAsync 50", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803483, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803485, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803516, "dur": 428, "ph": "X", "name": "ProcessMessages 13", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803947, "dur": 5639, "ph": "X", "name": "ReadAsync 13", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256822902, "dur": 508, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256439623, "dur": 56089, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256495715, "dur": 5, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256495722, "dur": 1256, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256823412, "dur": 5, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256421154, "dur": 389629, "ph": "X", "name": "RunBackend", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256425635, "dur": 7036, "ph": "X", "name": "BackendProgram.Start", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256810800, "dur": 4733, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256813403, "dur": 209, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256815620, "dur": 137, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256823423, "dur": 5, "ph": "X", "name": "BuildAsync", "args": {} }, +{ "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } +,{ "pid":12345, "tid":0, "ts":1689927256457076, "dur":74, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256457181, "dur":1437, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458629, "dur":230, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458928, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256460785, "dur":1395, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689927256463632, "dur":758, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689927256464783, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1689927256467703, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689927256459522, "dur":11259, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256470793, "dur":331487, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802281, "dur":271, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802552, "dur":89, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802801, "dur":57, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802874, "dur":1051, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689927256459543, "dur":11333, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256471386, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256471385, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256471530, "dur":1479, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":1, "ts":1689927256473011, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256473525, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256473992, "dur":1695, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256475908, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256476221, "dur":1847, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\EventTriggerType.cs" }} +,{ "pid":12345, "tid":1, "ts":1689927256473171, "dur":5062, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256478296, "dur":639, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256478935, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256479350, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256479441, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256480164, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256480705, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256480855, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256481010, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256482040, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482273, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482559, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482811, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483001, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483463, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483926, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256484293, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256459591, "dur":11415, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471072, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256471071, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_DDF441E8964B73A7.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471329, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471416, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471554, "dur":169, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1689927256471832, "dur":1719, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp2" }} +,{ "pid":12345, "tid":2, "ts":1689927256473552, "dur":438, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":2047, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\MemberUnitOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256476270, "dur":1451, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\GetMemberOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":3804, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256477883, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478015, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478299, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478929, "dur":528, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256479458, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256480754, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256480380, "dur":710, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689927256481223, "dur":146, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481369, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481449, "dur":605, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482054, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482301, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482584, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482848, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482989, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483463, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483914, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256484285, "dur":318000, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256459510, "dur":11313, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256470850, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256471050, "dur":275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471397, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471614, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471678, "dur":161, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471878, "dur":854, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256472936, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473090, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473244, "dur":204, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473448, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473756, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473921, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474119, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474330, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474519, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474680, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474862, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475083, "dur":206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475289, "dur":219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475508, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475757, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475985, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Welcome\\WelcomeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477056, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477231, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477401, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477572, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477739, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478047, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478324, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478951, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256479335, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256479448, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256479902, "dur":471, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256480425, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256480651, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256481388, "dur":59, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256481447, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482049, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482312, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482588, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482842, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482990, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256483441, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256483541, "dur":276, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256483925, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256484288, "dur":318076, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256459537, "dur":11312, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256470852, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471192, "dur":314, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256471506, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_1122BECC8220CC33.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471566, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":4, "ts":1689927256471797, "dur":1416, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1689927256473495, "dur":507, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\treeview\\AnimationTrackKeyDataSource.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256473227, "dur":840, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256474208, "dur":957, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Ports\\IUnitOutputPortDefinition.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256474068, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256475298, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476087, "dur":757, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Operators\\OperatorUtility.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256475560, "dur":1381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476942, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477126, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477288, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477456, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477608, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477763, "dur":393, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478156, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478298, "dur":657, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478955, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256479460, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256479694, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1689927256480422, "dur":276, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480710, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480813, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480948, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481229, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481337, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481460, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482038, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482282, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482587, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482845, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483018, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483451, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483924, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256484281, "dur":318031, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256459585, "dur":11413, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256471014, "dur":331, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll" }} +,{ "pid":12345, "tid":5, "ts":1689927256471003, "dur":345, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471390, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":5, "ts":1689927256471372, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471491, "dur":115, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471888, "dur":1724, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":638, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":856, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474470, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474719, "dur":267, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474986, "dur":243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475230, "dur":264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475494, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475812, "dur":412, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256476267, "dur":756, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageFormats\\OpenCover\\Model\\SummarySkippedEntity.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256476224, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477340, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477549, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477759, "dur":362, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478122, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478290, "dur":670, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478960, "dur":733, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256479693, "dur":707, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480405, "dur":311, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480805, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480943, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481236, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481370, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481454, "dur":588, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482042, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482275, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482589, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482821, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483015, "dur":386, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483450, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483925, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256484295, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256459619, "dur":11412, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471035, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256471217, "dur":307, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471549, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471669, "dur":209, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471904, "dur":1715, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1390, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1638, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475258, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475489, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475751, "dur":284, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256476260, "dur":710, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Playables\\DirectorControlPlayable.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256476035, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256477125, "dur":641, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\UI\\ScreenResolution.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256477036, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478164, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478299, "dur":654, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478953, "dur":399, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256479353, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256479823, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689927256480600, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480716, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480808, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480937, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481236, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481369, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481447, "dur":582, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482030, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482289, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482576, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482826, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483011, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483445, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483931, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256484260, "dur":12914, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256497175, "dur":305102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256459639, "dur":11429, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471072, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689927256471400, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471539, "dur":181, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1689927256471844, "dur":1714, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp2" }} +,{ "pid":12345, "tid":7, "ts":1689927256473985, "dur":1067, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\StartUpMethodExecutor.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256473559, "dur":1520, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475079, "dur":305, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475384, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475646, "dur":419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476272, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Evaluation\\ScheduleRuntimeClip.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256476065, "dur":843, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476908, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477114, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477346, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477525, "dur":216, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477741, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478016, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478309, "dur":643, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478952, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256479473, "dur":968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480593, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480717, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480842, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480950, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481210, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481363, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481450, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482045, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482312, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482562, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482845, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483002, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483452, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256484297, "dur":318057, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256459759, "dur":11323, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256471383, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":8, "ts":1689927256471381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689927256471507, "dur":2091, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":643, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":898, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474499, "dur":250, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474749, "dur":270, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475019, "dur":297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475317, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256476259, "dur":913, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Macros\\Macro.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256475576, "dur":1596, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477173, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477429, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477650, "dur":673, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478324, "dur":618, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478943, "dur":532, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256479475, "dur":964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480466, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480551, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480607, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480709, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480815, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480930, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481238, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481383, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481449, "dur":598, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482048, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482267, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482571, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482833, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483009, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483448, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483931, "dur":365, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256484296, "dur":318039, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256459781, "dur":11385, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471327, "dur":76, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_35574052A2A89F4F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256471444, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471531, "dur":1629, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":9, "ts":1689927256473176, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256473536, "dur":469, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256474930, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnhandledLogMessageException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475017, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnityTestTimeoutException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475640, "dur":474, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\IAsyncTestAssemblyBuilder.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256476254, "dur":1172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\Runner\\RestoreTestContextAfterDomainReload.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477837, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\IScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477890, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\PlayerTestAssemblyProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256478026, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\ScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256473161, "dur":5023, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478314, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478393, "dur":420, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478880, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478976, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256479327, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256479543, "dur":1610, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256481242, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256481400, "dur":1088, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482559, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256482642, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482995, "dur":460, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483455, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483954, "dur":306, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256484260, "dur":226330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256710594, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710592, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710786, "dur":1167, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256711957, "dur":90310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256459816, "dur":11356, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471315, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471545, "dur":1195, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_1202549BEDFB9D5D.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256472744, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256473002, "dur":403, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473405, "dur":351, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473757, "dur":257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256474203, "dur":965, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Events\\EventUnitWidget.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256474014, "dur":1792, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256475833, "dur":2233, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsObjectAttribute.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256475806, "dur":2410, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478216, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478278, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":10, "ts":1689927256478339, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478928, "dur":537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256479465, "dur":385, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256479891, "dur":760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1689927256480652, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480794, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480964, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481223, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481339, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481472, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482040, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482290, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482548, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482842, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482988, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483464, "dur":426, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483918, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256484273, "dur":317988, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256459839, "dur":11362, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471384, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471498, "dur":91, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_56AFA6E27C7D5F59.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256471683, "dur":1075, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472857, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472940, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473082, "dur":322, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473532, "dur":2137, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineProjectSettings.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256473404, "dur":2331, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256475735, "dur":518, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256476272, "dur":1476, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.settings-manager@2.0.1\\Editor\\SettingsGUILayout.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256476254, "dur":1745, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256477999, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478315, "dur":616, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478931, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479328, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256479404, "dur":560, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479970, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256480370, "dur":521, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256480926, "dur":901, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256481833, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256481915, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256482277, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482574, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482818, "dur":185, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483003, "dur":446, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483450, "dur":436, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483924, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256484272, "dur":317993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256459924, "dur":11305, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256471379, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689927256471378, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689927256471669, "dur":1325, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp2" }} +,{ "pid":12345, "tid":12, "ts":1689927256472994, "dur":214, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473209, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473362, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473505, "dur":372, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473988, "dur":972, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\UnifiedVariableUnitDescriptor.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256474960, "dur":723, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\SetVariableOption.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256473877, "dur":1920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256476263, "dur":1537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\Inspector\\InspectorAdaptiveWidthAttribute.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256475797, "dur":2033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256477964, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478317, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478884, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256479485, "dur":966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480452, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480587, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480789, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481057, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481224, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481351, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481467, "dur":576, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482043, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482285, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482563, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482830, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483001, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483457, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483911, "dur":375, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256484286, "dur":318006, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256459945, "dur":11457, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471418, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471676, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2" }} +,{ "pid":12345, "tid":13, "ts":1689927256471897, "dur":1710, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":1729, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":2253, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476265, "dur":633, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Collections\\NonNullableCollection.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256475862, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476936, "dur":239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477175, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477352, "dur":89, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477441, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477608, "dur":609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478217, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478320, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478916, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256479464, "dur":493, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":13, "ts":1689927256479958, "dur":628, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256480591, "dur":562, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":13, "ts":1689927256481153, "dur":261, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256481472, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482017, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482288, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482575, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482802, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483008, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483443, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483923, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256484272, "dur":317987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256459964, "dur":11446, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471420, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471582, "dur":129, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2" }} +,{ "pid":12345, "tid":14, "ts":1689927256471849, "dur":1734, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":664, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":885, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474469, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474737, "dur":358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256475096, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256476083, "dur":1948, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Description\\IGraphDescription.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256475290, "dur":2933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478224, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478322, "dur":583, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478906, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256479466, "dur":967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480523, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480716, "dur":491, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481215, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481376, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481464, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482066, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482305, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482586, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482803, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483003, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483447, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483906, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256484298, "dur":317995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256460082, "dur":11346, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256471450, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll" }} +,{ "pid":12345, "tid":15, "ts":1689927256471433, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256471706, "dur":1865, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":15, "ts":1689927256473572, "dur":630, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474202, "dur":210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474412, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474595, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474768, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":1028, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\InitializeAfterPluginsAttribute.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256476211, "dur":1699, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_5.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":2990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256477986, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478310, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478923, "dur":538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256479461, "dur":443, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256479917, "dur":747, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":15, "ts":1689927256480665, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480820, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480958, "dur":183, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481144, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481227, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481360, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481456, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482052, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482302, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482582, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482849, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483465, "dur":406, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256484297, "dur":318011, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256460100, "dur":11337, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256471447, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll" }} +,{ "pid":12345, "tid":16, "ts":1689927256471439, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C9C18B6F155787CC.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256471583, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256471681, "dur":1247, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256472956, "dur":208, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473165, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473425, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474083, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474279, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474461, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474633, "dur":197, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474830, "dur":187, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475139, "dur":535, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqCore\\Changelog_1_4_6.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256475017, "dur":727, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475745, "dur":405, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476270, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_StyleSheet.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256476151, "dur":756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476907, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477072, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477229, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477386, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477683, "dur":522, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478205, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478301, "dur":642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478943, "dur":364, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256479331, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256479451, "dur":757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689927256480209, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480544, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480618, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480804, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480957, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481162, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481216, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481358, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481465, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482028, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482297, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482547, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482852, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483464, "dur":411, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483875, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483931, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256484292, "dur":318009, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256460192, "dur":11253, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256471592, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":17, "ts":1689927256471829, "dur":1676, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":17, "ts":1689927256473507, "dur":640, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474148, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474361, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474531, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474688, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474852, "dur":431, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475284, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475480, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475685, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475917, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256476220, "dur":1800, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ColorGradient.cs" }} +,{ "pid":12345, "tid":17, "ts":1689927256476192, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478175, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478317, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478919, "dur":564, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256479483, "dur":972, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480455, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480606, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480724, "dur":84, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480809, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480951, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481214, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481376, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481461, "dur":587, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482049, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482291, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482561, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482839, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482990, "dur":470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483460, "dur":455, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483915, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256484284, "dur":317979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256460213, "dur":11239, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256471484, "dur":218, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689927256471729, "dur":90, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256471881, "dur":1708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256473590, "dur":1399, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256473589, "dur":1583, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475172, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475357, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475569, "dur":233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475995, "dur":2027, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Internal\\fsOption.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256475802, "dur":2242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478044, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478309, "dur":624, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478933, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479315, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479486, "dur":960, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480447, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480583, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480701, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480822, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480925, "dur":447, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481380, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481459, "dur":592, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482052, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482304, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482581, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482847, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483000, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483459, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483877, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483934, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256484259, "dur":12100, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256496362, "dur":653, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256497016, "dur":305263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256460232, "dur":11226, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256471579, "dur":125, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":19, "ts":1689927256471714, "dur":1165, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":19, "ts":1689927256472959, "dur":269, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473229, "dur":254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473483, "dur":330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473813, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":980, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Nesting\\GraphInputAnalyser.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":1189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475176, "dur":337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475513, "dur":560, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476266, "dur":570, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Animation\\AnimationTrack.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256476073, "dur":812, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476885, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477083, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477402, "dur":509, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\MultipleDisplayUtilities.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256477245, "dur":666, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477935, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477995, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478316, "dur":604, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478920, "dur":549, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256479470, "dur":989, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480460, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480563, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480615, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480723, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480821, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480924, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256481244, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256481474, "dur":1285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256482814, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256482897, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483415, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256483533, "dur":343, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483927, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484001, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256484276, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484348, "dur":236, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256485238, "dur":223989, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256710587, "dur":90364, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256710586, "dur":90367, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256800997, "dur":1161, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":20, "ts":1689927256460256, "dur":11251, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256471523, "dur":1991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":20, "ts":1689927256473515, "dur":342, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256473858, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256474206, "dur":1814, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\SubgraphUnit.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256474060, "dur":2096, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256476183, "dur":1888, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ScrollbarEventHandler.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256476156, "dur":2128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478284, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478940, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256479358, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256480755, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\CheckinProgress.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256479537, "dur":1757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256481375, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256481508, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256482035, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482282, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482546, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482818, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483014, "dur":442, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483456, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483905, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256484298, "dur":317984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256806556, "dur":1911, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid": 28512, "tid": 1242, "ts": 1689927256823918, "dur": 3203, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256827158, "dur": 1917, "ph": "X", "name": "backend1.traceevents", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256820681, "dur": 9202, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 {} ] diff --git a/LMC/Library/Bee/tundra.log.json b/LMC/Library/Bee/tundra.log.json index 2bfff2e2..e75efe94 100644 --- a/LMC/Library/Bee/tundra.log.json +++ b/LMC/Library/Bee/tundra.log.json @@ -97,6 +97,7 @@ {"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt","enqueuedNodeIndex":1,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} {"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp","enqueuedNodeIndex":2,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} {"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp2","enqueuedNodeIndex":3,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +<<<<<<< HEAD {"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueuedNodeIndex":93,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} {"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp","enqueuedNodeIndex":92,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueueingNodeIndex":93} {"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_22CBE839960FDD0C.mvfrm","enqueuedNodeIndex":111,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} @@ -352,3 +353,260 @@ {"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":343,"changes":[{"key":"FileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","displayName":"Copying Assembly-CSharp.dll","index":343} {"msg":"noderesult","processed_node_count":342,"number_of_nodes_ever_queued":344,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":343,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.dll"} +======= +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueuedNodeIndex":92,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp","enqueuedNodeIndex":91,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueueingNodeIndex":92} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_4DB8A94FC4A5CBC2.mvfrm","enqueuedNodeIndex":110,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm","enqueuedNodeIndex":117,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueuedNodeIndex":108,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm","enqueueingNodeIndex":117} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt","enqueuedNodeIndex":105,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":108} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp","enqueuedNodeIndex":106,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":108} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp2","enqueuedNodeIndex":107,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":108} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm","enqueuedNodeIndex":112,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":108} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp","enqueuedNodeIndex":111,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm","enqueueingNodeIndex":112} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm","enqueuedNodeIndex":118,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueuedNodeIndex":96,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm","enqueueingNodeIndex":118} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt","enqueuedNodeIndex":93,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":96} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp","enqueuedNodeIndex":94,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":96} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2","enqueuedNodeIndex":95,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":96} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm","enqueuedNodeIndex":104,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":96} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp","enqueuedNodeIndex":103,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm","enqueueingNodeIndex":104} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm","enqueuedNodeIndex":125,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueuedNodeIndex":116,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm","enqueueingNodeIndex":125} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt","enqueuedNodeIndex":113,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":116} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp","enqueuedNodeIndex":114,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":116} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp2","enqueuedNodeIndex":115,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":116} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm","enqueuedNodeIndex":120,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":116} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp","enqueuedNodeIndex":119,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm","enqueueingNodeIndex":120} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm","enqueuedNodeIndex":198,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueuedNodeIndex":137,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm","enqueueingNodeIndex":198} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":134,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":137} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp","enqueuedNodeIndex":135,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":137} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp2","enqueuedNodeIndex":136,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":137} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm","enqueuedNodeIndex":139,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":137} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":138,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm","enqueueingNodeIndex":139} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_7F5B154C05A780B0.mvfrm","enqueuedNodeIndex":205,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueuedNodeIndex":149,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_7F5B154C05A780B0.mvfrm","enqueueingNodeIndex":205} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":146,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":149} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.rsp","enqueuedNodeIndex":147,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":149} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.rsp2","enqueuedNodeIndex":148,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":149} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm","enqueuedNodeIndex":151,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":149} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":150,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm","enqueueingNodeIndex":151} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_D3B9364D6FB03093.mvfrm","enqueuedNodeIndex":206,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueuedNodeIndex":155,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_D3B9364D6FB03093.mvfrm","enqueueingNodeIndex":206} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt","enqueuedNodeIndex":152,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":155} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp","enqueuedNodeIndex":153,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":155} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2","enqueuedNodeIndex":154,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":155} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm","enqueuedNodeIndex":157,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":155} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp","enqueuedNodeIndex":156,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm","enqueueingNodeIndex":157} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_E668CD773429A040.mvfrm","enqueuedNodeIndex":207,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueuedNodeIndex":161,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_E668CD773429A040.mvfrm","enqueueingNodeIndex":207} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt","enqueuedNodeIndex":158,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":161} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp","enqueuedNodeIndex":159,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":161} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2","enqueuedNodeIndex":160,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":161} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm","enqueuedNodeIndex":163,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":161} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp","enqueuedNodeIndex":162,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm","enqueueingNodeIndex":163} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm","enqueuedNodeIndex":214,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueuedNodeIndex":167,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm","enqueueingNodeIndex":214} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt","enqueuedNodeIndex":164,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":167} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp","enqueuedNodeIndex":165,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":167} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2","enqueuedNodeIndex":166,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":167} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm","enqueuedNodeIndex":169,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":167} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp","enqueuedNodeIndex":168,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm","enqueueingNodeIndex":169} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm","enqueuedNodeIndex":221,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)","enqueuedNodeIndex":173,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm","enqueueingNodeIndex":221} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt","enqueuedNodeIndex":170,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":173} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp","enqueuedNodeIndex":171,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":173} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp2","enqueuedNodeIndex":172,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":173} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm","enqueuedNodeIndex":175,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":173} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm.rsp","enqueuedNodeIndex":174,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm","enqueueingNodeIndex":175} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm","enqueuedNodeIndex":228,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueuedNodeIndex":185,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm","enqueueingNodeIndex":228} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt","enqueuedNodeIndex":182,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":185} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp","enqueuedNodeIndex":183,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":185} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp2","enqueuedNodeIndex":184,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":185} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm","enqueuedNodeIndex":187,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":185} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp","enqueuedNodeIndex":186,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm","enqueueingNodeIndex":187} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm","enqueuedNodeIndex":241,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueuedNodeIndex":227,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm","enqueueingNodeIndex":241} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":224,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":227} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp","enqueuedNodeIndex":225,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":227} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2","enqueuedNodeIndex":226,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":227} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm","enqueuedNodeIndex":230,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":227} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":229,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm","enqueueingNodeIndex":230} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm","enqueuedNodeIndex":242,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueuedNodeIndex":234,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm","enqueueingNodeIndex":242} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt","enqueuedNodeIndex":231,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":234} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp","enqueuedNodeIndex":232,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":234} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp2","enqueuedNodeIndex":233,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":234} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm","enqueuedNodeIndex":236,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":234} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp","enqueuedNodeIndex":235,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm","enqueueingNodeIndex":236} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm","enqueuedNodeIndex":255,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueuedNodeIndex":240,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm","enqueueingNodeIndex":255} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":237,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":240} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp","enqueuedNodeIndex":238,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":240} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2","enqueuedNodeIndex":239,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":240} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm","enqueuedNodeIndex":244,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":240} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":243,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm","enqueueingNodeIndex":244} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm","enqueuedNodeIndex":256,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueuedNodeIndex":248,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm","enqueueingNodeIndex":256} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt","enqueuedNodeIndex":245,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":248} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp","enqueuedNodeIndex":246,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":248} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp2","enqueuedNodeIndex":247,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":248} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm","enqueuedNodeIndex":250,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":248} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp","enqueuedNodeIndex":249,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm","enqueueingNodeIndex":250} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm","enqueuedNodeIndex":269,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueuedNodeIndex":262,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm","enqueueingNodeIndex":269} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":259,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp","enqueuedNodeIndex":260,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp2","enqueuedNodeIndex":261,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm","enqueuedNodeIndex":264,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":263,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm","enqueueingNodeIndex":264} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm","enqueuedNodeIndex":276,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueuedNodeIndex":124,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm","enqueueingNodeIndex":276} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":121,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":124} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp","enqueuedNodeIndex":122,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":124} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp2","enqueuedNodeIndex":123,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":124} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm","enqueuedNodeIndex":127,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":124} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":126,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm","enqueueingNodeIndex":127} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_65A192712782EB2B.mvfrm","enqueuedNodeIndex":277,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueuedNodeIndex":131,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_65A192712782EB2B.mvfrm","enqueueingNodeIndex":277} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":128,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp","enqueuedNodeIndex":129,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2","enqueuedNodeIndex":130,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm","enqueuedNodeIndex":133,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":132,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm","enqueueingNodeIndex":133} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm","enqueuedNodeIndex":278,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueuedNodeIndex":143,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm","enqueueingNodeIndex":278} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":140,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":143} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp","enqueuedNodeIndex":141,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":143} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp2","enqueuedNodeIndex":142,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":143} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm","enqueuedNodeIndex":145,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":143} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":144,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm","enqueueingNodeIndex":145} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_F09CF4826CE11CD9.mvfrm","enqueuedNodeIndex":279,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueuedNodeIndex":204,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_F09CF4826CE11CD9.mvfrm","enqueueingNodeIndex":279} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":201,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":204} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp","enqueuedNodeIndex":202,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":204} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2","enqueuedNodeIndex":203,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":204} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm","enqueuedNodeIndex":209,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":204} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":208,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm","enqueueingNodeIndex":209} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm","enqueuedNodeIndex":280,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueuedNodeIndex":213,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm","enqueueingNodeIndex":280} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":210,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":213} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp","enqueuedNodeIndex":211,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":213} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp2","enqueuedNodeIndex":212,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":213} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm","enqueuedNodeIndex":216,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":213} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":215,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm","enqueueingNodeIndex":216} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm","enqueuedNodeIndex":281,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueuedNodeIndex":220,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm","enqueueingNodeIndex":281} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":217,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":220} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp","enqueuedNodeIndex":218,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":220} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp2","enqueuedNodeIndex":219,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":220} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm","enqueuedNodeIndex":223,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":220} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":222,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm","enqueueingNodeIndex":223} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm","enqueuedNodeIndex":282,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)","enqueuedNodeIndex":179,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm","enqueueingNodeIndex":282} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":176,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)","enqueueingNodeIndex":179} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp","enqueuedNodeIndex":177,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)","enqueueingNodeIndex":179} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp2","enqueuedNodeIndex":178,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)","enqueueingNodeIndex":179} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm","enqueuedNodeIndex":181,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)","enqueueingNodeIndex":179} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":180,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm","enqueueingNodeIndex":181} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm","enqueuedNodeIndex":283,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueuedNodeIndex":254,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm","enqueueingNodeIndex":283} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":251,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":254} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp","enqueuedNodeIndex":252,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":254} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2","enqueuedNodeIndex":253,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":254} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm","enqueuedNodeIndex":258,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":254} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":257,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm","enqueueingNodeIndex":258} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm","enqueuedNodeIndex":284,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueuedNodeIndex":268,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm","enqueueingNodeIndex":284} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":265,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":268} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp","enqueuedNodeIndex":266,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":268} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2","enqueuedNodeIndex":267,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":268} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm","enqueuedNodeIndex":271,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":268} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":270,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm","enqueueingNodeIndex":271} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm","enqueuedNodeIndex":285,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueuedNodeIndex":191,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm","enqueueingNodeIndex":285} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":188,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":191} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp","enqueuedNodeIndex":189,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":191} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp2","enqueuedNodeIndex":190,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":191} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm","enqueuedNodeIndex":193,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":191} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":192,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm","enqueueingNodeIndex":193} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll","enqueuedNodeIndex":288,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb","enqueuedNodeIndex":289,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll","enqueuedNodeIndex":290,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb","enqueuedNodeIndex":291,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll","enqueuedNodeIndex":292,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb","enqueuedNodeIndex":293,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.dll","enqueuedNodeIndex":294,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.pdb","enqueuedNodeIndex":295,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll","enqueuedNodeIndex":296,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb","enqueuedNodeIndex":297,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll","enqueuedNodeIndex":298,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb","enqueuedNodeIndex":299,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll","enqueuedNodeIndex":300,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb","enqueuedNodeIndex":301,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll","enqueuedNodeIndex":302,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb","enqueuedNodeIndex":303,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.dll","enqueuedNodeIndex":304,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.pdb","enqueuedNodeIndex":305,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll","enqueuedNodeIndex":306,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb","enqueuedNodeIndex":307,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.dll","enqueuedNodeIndex":308,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.pdb","enqueuedNodeIndex":309,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll","enqueuedNodeIndex":310,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb","enqueuedNodeIndex":311,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll","enqueuedNodeIndex":312,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb","enqueuedNodeIndex":313,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll","enqueuedNodeIndex":314,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb","enqueuedNodeIndex":315,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll","enqueuedNodeIndex":316,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb","enqueuedNodeIndex":317,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll","enqueuedNodeIndex":318,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb","enqueuedNodeIndex":319,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","enqueuedNodeIndex":320,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueuedNodeIndex":197,"enqueueingNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","enqueueingNodeIndex":320} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":194,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":197} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp","enqueuedNodeIndex":195,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":197} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp2","enqueuedNodeIndex":196,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":197} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm","enqueuedNodeIndex":200,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":197} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":199,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm","enqueueingNodeIndex":200} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb","enqueuedNodeIndex":321,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.dll","enqueuedNodeIndex":322,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.pdb","enqueuedNodeIndex":323,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","enqueuedNodeIndex":324,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb","enqueuedNodeIndex":325,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll","enqueuedNodeIndex":326,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb","enqueuedNodeIndex":327,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll","enqueuedNodeIndex":328,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb","enqueuedNodeIndex":329,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll","enqueuedNodeIndex":330,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb","enqueuedNodeIndex":331,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll","enqueuedNodeIndex":332,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb","enqueuedNodeIndex":333,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll","enqueuedNodeIndex":334,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb","enqueuedNodeIndex":335,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll","enqueuedNodeIndex":336,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb","enqueuedNodeIndex":337,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll","enqueuedNodeIndex":338,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb","enqueuedNodeIndex":339,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll","enqueuedNodeIndex":340,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb","enqueuedNodeIndex":341,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","enqueuedNodeIndex":342,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueuedNodeIndex":275,"enqueueingNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","enqueueingNodeIndex":342} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt","enqueuedNodeIndex":272,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":275} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp","enqueuedNodeIndex":273,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":275} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp2","enqueuedNodeIndex":274,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":275} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueuedNodeIndex":287,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":275} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp","enqueuedNodeIndex":286,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueueingNodeIndex":287} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","enqueuedNodeIndex":343,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"inputSignatureChanged","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":275,"changes":[{"key":"Action","value":"\"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetCoreRuntime\\dotnet.exe\" exec \"D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp\" \"@Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp2\"","oldvalue":null},{"key":"FileList","value":["D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.CoreModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DeviceSimulatorModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DiagnosticsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.EditorToolbarModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneViewModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIBuilderModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsSamplesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UnityConnectModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AnimationModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ARModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AssetBundleModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AudioModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClothModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterInputModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterRendererModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ContentLoadModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CoreModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CrashReportingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DirectorModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DSPGraphModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GameCenterModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.HotReloadModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.IMGUIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputLegacyModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.JSONSerializeModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.LocalizationModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ParticleSystemModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.Physics2DModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PhysicsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ProfilerModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PropertiesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ScreenCaptureModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteMaskModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteShapeModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.StreamingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubstanceModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubsystemsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainPhysicsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreFontEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreTextEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextRenderingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TLSModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UmbraModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityCurlModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityTestProtocolModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAssetBundleModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAudioModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestWWWModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VehiclesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VideoModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VirtualTexturingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VRModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.WindModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.XRModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\mscorlib.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ComponentModel.Composition.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Core.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Data.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Drawing.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.IO.Compression.FileSystem.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Net.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Numerics.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Runtime.Serialization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ServiceModel.Web.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Linq.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Serialization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\Microsoft.Win32.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.AppContext.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Buffers.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Concurrent.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.NonGeneric.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Specialized.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.EventBasedAsync.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.TypeConverter.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Console.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Data.Common.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Contracts.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Debug.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.FileVersionInfo.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Process.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TextWriterTraceListener.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tools.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TraceSource.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tracing.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Drawing.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Dynamic.Runtime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Calendars.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.ZipFile.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.DriveInfo.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Watcher.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.IsolatedStorage.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.MemoryMappedFiles.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Pipes.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.UnmanagedMemoryStream.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Parallel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Queryable.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Memory.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Http.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NameResolution.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NetworkInformation.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Ping.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Requests.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Security.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Sockets.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebHeaderCollection.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.Client.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Numerics.Vectors.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ObjectModel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.DispatchProxy.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.ILGeneration.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.Lightweight.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Reader.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.ResourceManager.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Writer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.CompilerServices.VisualC.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Handles.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.RuntimeInformation.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Numerics.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Formatters.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Json.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Xml.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Claims.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Algorithms.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Csp.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.X509Certificates.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Principal.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.SecureString.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.RegularExpressions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Overlapped.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Parallel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Thread.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.ThreadPool.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ValueTuple.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.ReaderWriter.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlSerializer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.XDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\Extensions\\2.0.0\\System.Runtime.InteropServices.WindowsRuntime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\ref\\2.1.0\\netstandard.dll","Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\lib\\ReportGenerator\\ReportGeneratorMerged.dll","Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Performance.Profile-Analyzer.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Rider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.SettingsProvider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Shared.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualStudio.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VSCode.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.UI.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.UI.ref.dll","Assets\\DoorOpen.cs","Assets\\Initalize.cs","Assets\\NewTextModify.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark01.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark01_UGUI.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark02.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark03.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark04.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\CameraController.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ChatController.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\DropdownSample.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\EnvMapAnimator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ObjectSpin.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ShaderPropAnimator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\SimpleScript.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\SkewTextExample.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TeleType.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextConsoleSimulator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextMeshProFloatingText.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextMeshSpawner.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMPro_InstructionOverlay.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_DigitValidator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_ExampleScript_01.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_FrameRateCounter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_PhoneNumberValidator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextEventCheck.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextEventHandler.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextInfoDebugTool.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextSelector_A.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextSelector_B.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_UiFrameRateCounter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexColorCycler.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexJitter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexShakeA.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexShakeB.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexZoom.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\WarpTextExample.cs","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\Unity.SourceGenerators\\Unity.Properties.SourceGenerator.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\Unity.SourceGenerators\\Unity.SourceGenerators.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.rsp"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","displayName":"Csc Assembly-CSharp","index":275} +{"msg":"noderesult","processed_node_count":339,"number_of_nodes_ever_queued":343,"annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":275,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll"} +{"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":343,"changes":[{"key":"FileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","displayName":"Copying Assembly-CSharp.pdb","index":343} +{"msg":"noderesult","processed_node_count":340,"number_of_nodes_ever_queued":343,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":343,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.pdb"} +{"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":342,"changes":[{"key":"FileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","displayName":"Copying Assembly-CSharp.dll","index":342} +{"msg":"noderesult","processed_node_count":341,"number_of_nodes_ever_queued":343,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":342,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.dll"} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 diff --git a/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index b/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index new file mode 100644 index 00000000..0418550c Binary files /dev/null and b/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index differ diff --git a/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json b/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json index 4c363b53..66d991c7 100644 --- a/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json +++ b/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json @@ -1 +1 @@ -{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[1549258216444794940,7115776030973179702,5862842709940939656,3022990752737702646],"m_LastClickedFileID":0} \ No newline at end of file +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[1549258216444794940,7115776030973179702,5862842709940939656,3022990752737702646],"m_LastClickedFileID":5862842709940939656} \ No newline at end of file diff --git a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json index 8c0df5c4..60720ff7 100644 --- a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json +++ b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json @@ -1 +1,5 @@ -{"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":54.929622650146487,"y":14.45775032043457,"z":-39.83504104614258},"rotation":{"x":0.24926549196243287,"y":0.08412683755159378,"z":-0.021741610020399095,"w":0.9645325541496277},"size":138.88458251953126,"orthographic":false} \ No newline at end of file +<<<<<<< HEAD +{"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":54.929622650146487,"y":14.45775032043457,"z":-39.83504104614258},"rotation":{"x":0.24926549196243287,"y":0.08412683755159378,"z":-0.021741610020399095,"w":0.9645325541496277},"size":138.88458251953126,"orthographic":false} +======= +{"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":168.24560546875,"y":-18.174959182739259,"z":-113.54839324951172},"rotation":{"x":0.0825752317905426,"y":0.7340317368507385,"z":-0.09074344485998154,"w":0.6679471135139465},"size":150.10302734375,"orthographic":false} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 diff --git a/LMC/Library/ilpp.pid b/LMC/Library/ilpp.pid index c1440a2a..0f6d82ca 100644 --- a/LMC/Library/ilpp.pid +++ b/LMC/Library/ilpp.pid @@ -1 +1,5 @@ -12180 \ No newline at end of file +<<<<<<< HEAD +12180 +======= +18976 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 diff --git a/LMC/Logs/AssetImportWorker0.log b/LMC/Logs/AssetImportWorker0.log index 53605a71..7e9ed562 100644 --- a/LMC/Logs/AssetImportWorker0.log +++ b/LMC/Logs/AssetImportWorker0.log @@ -15,9 +15,15 @@ C:/Users/Lenovo/LittleManComputer/LMC -logFile Logs/AssetImportWorker0.log -srvPort +<<<<<<< HEAD 55899 Successfully changed project path to: C:/Users/Lenovo/LittleManComputer/LMC C:/Users/Lenovo/LittleManComputer/LMC +======= +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 [UnityMemory] Configuration Parameters - Can be set up in boot.config "memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-bucket-count=8" @@ -49,11 +55,19 @@ C:/Users/Lenovo/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" +<<<<<<< HEAD Player connection [7892] Host "[IP] 192.168.86.25 [Port] 0 [Flags] 2 [Guid] 4080297476 [EditorId] 4080297476 [Version] 1048832 [Id] WindowsEditor(7,thanhs) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... Player connection [7892] Host "[IP] 192.168.86.25 [Port] 0 [Flags] 2 [Guid] 4080297476 [EditorId] 4080297476 [Version] 1048832 [Id] WindowsEditor(7,thanhs) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... Refreshing native plugins compatible for Editor in 7.31 ms, found 3 plugins. +======= +Player connection [7964] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1535087249 [EditorId] 1535087249 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [7964] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1535087249 [EditorId] 1535087249 [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 19.20 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -66,6 +80,7 @@ Direct3D: VRAM: 8033 MB Driver: 31.0.101.4255 Initialize mono +<<<<<<< HEAD Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' @@ -76,17 +91,35 @@ Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.0f1/E Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Registered in 0.004937 seconds. - Loaded All Assemblies, in 0.319 seconds +======= +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 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:56928 +Begin MonoManager ReloadAssembly +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 +Registered in 0.004590 seconds. +- Loaded All Assemblies, in 0.340 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly +<<<<<<< HEAD - Finished resetting the current domain, in 0.274 seconds Domain Reload Profiling: 593ms BeginReloadAssembly (90ms) +======= +- Finished resetting the current domain, in 0.208 seconds +Domain Reload Profiling: 548ms + BeginReloadAssembly (144ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) +<<<<<<< HEAD RebuildCommonClasses (30ms) RebuildNativeTypeToScriptingClass (9ms) initialDomainReloadingComplete (53ms) @@ -109,6 +142,30 @@ Domain Reload Profiling: 593ms BeforeProcessingInitializeOnLoad (3ms) ProcessInitializeOnLoadAttributes (149ms) ProcessInitializeOnLoadMethodAttributes (48ms) +======= + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (114ms) + TypeCache.Refresh (113ms) + TypeCache.ScanAssembly (95ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (1ms) + FinalizeReload (208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (163ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (112ms) + ProcessInitializeOnLoadMethodAttributes (37ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -116,20 +173,34 @@ Domain Reload Profiling: 593ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.970 seconds Refreshing native plugins compatible for Editor in 2.20 ms, found 3 plugins. +======= +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 1.164 seconds +Refreshing native plugins compatible for Editor in 3.32 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly +<<<<<<< HEAD - Finished resetting the current domain, in 0.636 seconds Domain Reload Profiling: 1605ms BeginReloadAssembly (159ms) +======= +- Finished resetting the current domain, in 0.489 seconds +Domain Reload Profiling: 1653ms + BeginReloadAssembly (172ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) +<<<<<<< HEAD CreateAndSetChildDomain (24ms) RebuildCommonClasses (43ms) RebuildNativeTypeToScriptingClass (15ms) @@ -164,6 +235,42 @@ Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. Memory consumption went from 120.8 MB to 120.8 MB. Total: 4.607100 ms (FindLiveObjects: 0.554500 ms CreateObjectMapping: 0.099300 ms MarkObjects: 3.810500 ms DeleteObjects: 0.133900 ms) +======= + CreateAndSetChildDomain (22ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (742ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (294ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (3ms) + FinalizeReload (489ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.285300 ms (FindLiveObjects: 0.244700 ms CreateObjectMapping: 0.097300 ms MarkObjects: 3.754900 ms DeleteObjects: 0.186700 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -179,22 +286,147 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 53724.566886 seconds. path: Assets/White.mat artifactKey: Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Start importing Assets/White.mat using Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dccf5d6a25608618f2d0b80326d831c') in 0.164702 seconds +======= + Time since last request: 559123.913020 seconds. + path: Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt + artifactKey: Guid(d82c1b31c7e74239bff1220585707d2b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt using Guid(d82c1b31c7e74239bff1220585707d2b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7ade0b2c3acd396375e5727795b1bf75') in 0.084881 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne.json + artifactKey: Guid(8f05276190cf498a8153f6cbe761d4e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne.json using Guid(8f05276190cf498a8153f6cbe761d4e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '23133b20357b2267cc23d9452304b6a7') in 0.025262 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs + artifactKey: Guid(2787a46a4dc848c1b4b7b9307b614bfd) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs using Guid(2787a46a4dc848c1b4b7b9307b614bfd) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '66bb2efc1b8a910023ebe4b1add37e93') in 0.041913 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.002259 seconds. + path: Assets/Cabinet.blend + artifactKey: Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Cabinet.blend using Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '94dc8af8405f48c56095a5931979e170') in 0.075208 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 20 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/06 - Extra Rich Text Examples.unity + artifactKey: Guid(39a1fa96ad2a449b908fca29d4297a74) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/06 - Extra Rich Text Examples.unity using Guid(39a1fa96ad2a449b908fca29d4297a74) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '107130edf2ff2a420af412dba86feaae') in 0.015851 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs + artifactKey: Guid(dc20866c0d5e413ab7559440e15333ae) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs using Guid(dc20866c0d5e413ab7559440e15333ae) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1a65a47c4188b83674ce93ba753ec448') in 0.016110 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF + artifactKey: Guid(8a2b9e2a607dd2143b58c44bc32410b4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF using Guid(8a2b9e2a607dd2143b58c44bc32410b4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3a8db84b21e76c4aaa1785fd9399b847') in 0.045969 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/20 - Input Field with Scrollbar.unity + artifactKey: Guid(337f92480dd24675aae9e79210fb1ad9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/20 - Input Field with Scrollbar.unity using Guid(337f92480dd24675aae9e79210fb1ad9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5749368ab1cf62db3de1205bbad5c8fe') in 0.018114 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/07 - Superscript & Subscript Example.unity + artifactKey: Guid(03ec435d4b7140e9b2d87f79136d8374) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/07 - Superscript & Subscript Example.unity using Guid(03ec435d4b7140e9b2d87f79136d8374) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0c0cf227fb9299412e274b10096900c2') in 0.016728 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000067 seconds. + path: Assets/12211_Robot_l2.controller + artifactKey: Guid(051d81c6115e89e40af19eb323491e45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/12211_Robot_l2.controller using Guid(051d81c6115e89e40af19eb323491e45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f30dcd57e1ccebf6626719d3c83d6f01') in 0.033547 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 17 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs + artifactKey: Guid(4f19c7f94c794c5097d8bd11e39c750d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs using Guid(4f19c7f94c794c5097d8bd11e39c750d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3935ed8bb21cb1d2f54f71bac57c9b0b') in 0.016644 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/NewTextModify.cs + artifactKey: Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/NewTextModify.cs using Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '435910ace4628661f53e3207b3304692') in 0.015096 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/White.mat + artifactKey: Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/White.mat using Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '239318d7c3ceda824dabb1c873bbbef3') in 0.019406 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 1 ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 0.000128 seconds. path: Assets/Black.mat artifactKey: Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Start importing Assets/Black.mat using Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ed29b857c6363e447de48139b8dd9e4') in 0.028318 seconds +======= + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/23 - Animating Vertex Attributes.unity + artifactKey: Guid(54e994244b4b467e8583cf2da6dcc716) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/23 - Animating Vertex Attributes.unity using Guid(54e994244b4b467e8583cf2da6dcc716) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '21a6b47c19927fcb1e17c60b4bcbbe6e') in 0.013918 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 1 ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 0.000147 seconds. path: Assets/A.prefab artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) @@ -215,10 +447,153 @@ Received Import Request. path: Assets/Textures/12211_Robot_diffuse.jpg artifactKey: Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Start importing Assets/Textures/12211_Robot_diffuse.jpg using Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78bc3cf219d97be594367e89640397ba') in 0.034810 seconds +======= + Time since last request: 0.000095 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader + artifactKey: Guid(c8d12adcee749c344b8117cf7c7eb912) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader using Guid(c8d12adcee749c344b8117cf7c7eb912) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '385883bf963cacda1fdeca9b90503cf6') in 0.026045 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers - OFL.txt + artifactKey: Guid(efe0bf4ac872451e91612d1ae593f480) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers - OFL.txt using Guid(efe0bf4ac872451e91612d1ae593f480) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9721b0e07751f0596f62ecd6d9daf77c') in 0.025239 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000061 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs + artifactKey: Guid(a4b6f99e8bc54541bbd149b014ff441c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs using Guid(a4b6f99e8bc54541bbd149b014ff441c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2f0a3af92d060ff1932c9acdcbfb0c0e') in 0.018385 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/17 - Old Computer Terminal.unity + artifactKey: Guid(3e2e4d7b0bed4cf9ab827e9f32448f69) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/17 - Old Computer Terminal.unity using Guid(3e2e4d7b0bed4cf9ab827e9f32448f69) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b44a84f776e6ac04ff43816385b28236') in 0.016040 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000073 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/Text Popup.prefab + artifactKey: Guid(b06f0e6c1dfa4356ac918da1bb32c603) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/Text Popup.prefab using Guid(b06f0e6c1dfa4356ac918da1bb32c603) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3802109bf7a6f22be46afcd1530e0234') in 0.081566 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 21 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs + artifactKey: Guid(43bcd35a1c0c40ccb6d472893fe2093f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs using Guid(43bcd35a1c0c40ccb6d472893fe2093f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1511ae6008fba6d89cb1a7f6385bb777') in 0.021085 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs + artifactKey: Guid(1a7eb92a01ed499a987bde9def05fbce) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs using Guid(1a7eb92a01ed499a987bde9def05fbce) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '523cb50f0dcc9a67259064c4dd7416b6') in 0.016323 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs + artifactKey: Guid(103e0a6a1d404693b9fb1a5173e0e979) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs using Guid(103e0a6a1d404693b9fb1a5173e0e979) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c822246baca51eb300b68f1032b6c94f') in 0.018131 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs + artifactKey: Guid(e32c266ee6204b21a427753cb0694c81) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs using Guid(e32c266ee6204b21a427753cb0694c81) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '18b88d133c73f5d172cc1089c72e60c0') in 0.021886 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset + artifactKey: Guid(fbef3c704dce48f08a44612d6c856c8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset using Guid(fbef3c704dce48f08a44612d6c856c8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3b1036ee150b6ad85fc8e2d0004904e2') in 0.049792 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat + artifactKey: Guid(6522f30e342599e4e9dd4cc2cc03c830) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat using Guid(6522f30e342599e4e9dd4cc2cc03c830) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4723fb1c7ea418d6cace999791f58d91') in 0.046355 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs + artifactKey: Guid(686ec78b56aa445795335fbadafcfaa4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs using Guid(686ec78b56aa445795335fbadafcfaa4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ffa62681598bfd4f5b5f35d9585d796e') in 0.020421 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset + artifactKey: Guid(f952c082cb03451daed3ee968ac6c63e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset using Guid(f952c082cb03451daed3ee968ac6c63e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '945f77b7b75029ce64578b3a4e828769') in 0.016286 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs + artifactKey: Guid(c3c1afeda5e545e0b19add5373896d2e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs using Guid(c3c1afeda5e545e0b19add5373896d2e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f9feb23686b9e4db575a16ec0f7c0396') in 0.016012 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs + artifactKey: Guid(76c11bbcfddf44e0ba17d6c2751c8d84) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs using Guid(76c11bbcfddf44e0ba17d6c2751c8d84) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '996b441fc00bfe99f49d8c72a4f4a3bc') in 0.017479 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat + artifactKey: Guid(42df1c7856584b6b8db9a509b6b10074) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat using Guid(42df1c7856584b6b8db9a509b6b10074) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5163d2b1e7157e27017757c611bfae8c') in 0.029009 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 2 ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 0.000109 seconds. path: Assets/Textures/Texture.jpg artifactKey: Guid(34f6a94ffd906414baab13a5f3d16a2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) @@ -231,10 +606,27 @@ Received Import Request. path: Assets/Materials/Handle_material.mat artifactKey: Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Start importing Assets/Materials/Handle_material.mat using Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e12d57333526086a5b6892b91a208e39') in 0.036176 seconds +======= + Time since last request: 0.000015 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg + artifactKey: Guid(1cdc5b506b1a4a33a53c30669ced1f51) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg using Guid(1cdc5b506b1a4a33a53c30669ced1f51) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5ccfff2b6fa9f1bf2f3a2d579d9525e0') in 0.014616 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000064 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/05 - Style Tags.unity + artifactKey: Guid(70615243e2be4a81afaab9bf5d273d65) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/05 - Style Tags.unity using Guid(70615243e2be4a81afaab9bf5d273d65) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '804dc70b79fa7ed764ae12d2623bfadf') in 0.015204 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 1 ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 466.383694 seconds. path: Assets/Initalize.cs artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) @@ -299,6 +691,50 @@ Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3627. Memory consumption went from 121.5 MB to 121.4 MB. Total: 3.395900 ms (FindLiveObjects: 0.237100 ms CreateObjectMapping: 0.081300 ms MarkObjects: 3.022000 ms DeleteObjects: 0.053600 ms) +======= + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/14 - Multi Font & Sprites.unity + artifactKey: Guid(22a2fba786ad4c40ac0ba09f0b933100) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/14 - Multi Font & Sprites.unity using Guid(22a2fba786ad4c40ac0ba09f0b933100) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b20c0656b0899e8bc5345870bb8d528b') in 0.013749 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader + artifactKey: Guid(85187c2149c549c5b33f0cdb02836b17) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader using Guid(85187c2149c549c5b33f0cdb02836b17) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a5d390d7a074fbd7c9be9778e4ae861f') in 0.017318 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/accumulator.fbx + artifactKey: Guid(521707c941a6558438374a67ba294c3e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/accumulator.fbx using Guid(521707c941a6558438374a67ba294c3e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b3b741d3fc0e2708ee3b5ec9ae82b512') in 0.034071 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 9 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset + artifactKey: Guid(5302535af1044152a457ed104f1f4b91) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset using Guid(5302535af1044152a457ed104f1f4b91) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0d5639f1e796fc1138bd59c1c9b6af0a') in 0.024623 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 4.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 0 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2 unused Assets / (1.6 KB). Loaded Objects now: 3581. +Memory consumption went from 69.6 MB to 69.6 MB. +Total: 4.167500 ms (FindLiveObjects: 0.249100 ms CreateObjectMapping: 0.085300 ms MarkObjects: 3.806500 ms DeleteObjects: 0.025500 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -309,12 +745,14 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. +<<<<<<< HEAD Time since last request: 103.005111 seconds. path: Assets/12211_Robot_l2.controller artifactKey: Guid(051d81c6115e89e40af19eb323491e45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) @@ -328,17 +766,40 @@ Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\LittleManComput Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.614 seconds Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +======= + Time since last request: 137.107529 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bdd01779e14a9600c47589d49f1e0e86') in 0.015712 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +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.491 seconds +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly +<<<<<<< HEAD - Finished resetting the current domain, in 0.460 seconds Domain Reload Profiling: 1072ms BeginReloadAssembly (128ms) +======= +- Finished resetting the current domain, in 0.775 seconds +Domain Reload Profiling: 1266ms + BeginReloadAssembly (114ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (34ms) +<<<<<<< HEAD RebuildCommonClasses (28ms) RebuildNativeTypeToScriptingClass (8ms) initialDomainReloadingComplete (30ms) @@ -371,6 +832,40 @@ Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3630. Memory consumption went from 121.5 MB to 121.4 MB. Total: 2.178900 ms (FindLiveObjects: 0.297200 ms CreateObjectMapping: 0.070000 ms MarkObjects: 1.772000 ms DeleteObjects: 0.038500 ms) +======= + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (200ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (775ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3584. +Memory consumption went from 116.9 MB to 116.9 MB. +Total: 2.166400 ms (FindLiveObjects: 0.176300 ms CreateObjectMapping: 0.073400 ms MarkObjects: 1.872600 ms DeleteObjects: 0.043100 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -381,6 +876,10 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -388,6 +887,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.595 seconds @@ -398,10 +898,86 @@ Mono: successfully reloaded assembly - Finished resetting the current domain, in 0.473 seconds Domain Reload Profiling: 1066ms BeginReloadAssembly (122ms) +======= +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.480 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.520 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (521ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.12 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: 3587. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.404300 ms (FindLiveObjects: 0.185000 ms CreateObjectMapping: 0.076400 ms MarkObjects: 2.104400 ms DeleteObjects: 0.037600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.443 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 948ms + BeginReloadAssembly (104ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) +<<<<<<< HEAD CreateAndSetChildDomain (34ms) RebuildCommonClasses (27ms) RebuildNativeTypeToScriptingClass (8ms) @@ -435,6 +1011,41 @@ Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3633. Memory consumption went from 121.7 MB to 121.7 MB. Total: 2.411700 ms (FindLiveObjects: 0.173500 ms CreateObjectMapping: 0.072100 ms MarkObjects: 2.123400 ms DeleteObjects: 0.039400 ms) +======= + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (505ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.14 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: 3590. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.169200 ms (FindLiveObjects: 0.175900 ms CreateObjectMapping: 0.072700 ms MarkObjects: 1.884800 ms DeleteObjects: 0.035000 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -445,11 +1056,16 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +<<<<<<< HEAD Received Import Request. Time since last request: 2449.110145 seconds. path: Assets/robot.fbx @@ -490,10 +1106,44 @@ Domain Reload Profiling: 1416ms ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (251ms) +======= +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.691 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.745 seconds +Domain Reload Profiling: 1436ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (466ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (258ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (745ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (312ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) +<<<<<<< HEAD BeforeProcessingInitializeOnLoad (48ms) ProcessInitializeOnLoadAttributes (172ms) ProcessInitializeOnLoadMethodAttributes (19ms) @@ -507,9 +1157,24 @@ Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3640. Memory consumption went from 123.2 MB to 123.2 MB. Total: 3.621200 ms (FindLiveObjects: 0.191700 ms CreateObjectMapping: 0.078400 ms MarkObjects: 3.302800 ms DeleteObjects: 0.046700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): +======= + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (227ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.53 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: 3593. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.326900 ms (FindLiveObjects: 0.224000 ms CreateObjectMapping: 0.079100 ms MarkObjects: 2.981400 ms DeleteObjects: 0.041400 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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 -> @@ -517,6 +1182,10 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -524,6 +1193,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.693 seconds @@ -571,6 +1241,54 @@ Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3643. Memory consumption went from 123.4 MB to 123.4 MB. Total: 6.265000 ms (FindLiveObjects: 0.781400 ms CreateObjectMapping: 1.135500 ms MarkObjects: 4.249100 ms DeleteObjects: 0.095400 ms) +======= +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.647 seconds +Refreshing native plugins compatible for Editor in 3.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.713 seconds +Domain Reload Profiling: 1362ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (445ms) + LoadAssemblies (247ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (715ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.36 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: 3596. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.193000 ms (FindLiveObjects: 0.177200 ms CreateObjectMapping: 0.079600 ms MarkObjects: 1.897700 ms DeleteObjects: 0.037400 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -581,6 +1299,10 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -588,6 +1310,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.635 seconds @@ -598,10 +1321,86 @@ Mono: successfully reloaded assembly - Finished resetting the current domain, in 0.516 seconds Domain Reload Profiling: 1150ms BeginReloadAssembly (132ms) +======= +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.725 seconds +Refreshing native plugins compatible for Editor in 3.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.305 seconds +Domain Reload Profiling: 2030ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (494ms) + LoadAssemblies (281ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (285ms) + TypeCache.Refresh (278ms) + TypeCache.ScanAssembly (267ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1305ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (416ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (314ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.24 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.5 KB). Loaded Objects now: 3599. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 4.073200 ms (FindLiveObjects: 0.248000 ms CreateObjectMapping: 0.081000 ms MarkObjects: 3.679900 ms DeleteObjects: 0.062900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.631 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.531 seconds +Domain Reload Profiling: 1161ms + BeginReloadAssembly (159ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) +<<<<<<< HEAD CreateAndSetChildDomain (35ms) RebuildCommonClasses (27ms) RebuildNativeTypeToScriptingClass (13ms) @@ -615,10 +1414,26 @@ Domain Reload Profiling: 1150ms ScanForSourceGeneratedMonoScriptInfo (5ms) ResolveRequiredComponents (5ms) FinalizeReload (517ms) +======= + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (251ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (218ms) + TypeCache.Refresh (216ms) + TypeCache.ScanAssembly (206ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (531ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (252ms) LogAssemblyErrors (0ms) +<<<<<<< HEAD InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) @@ -1083,6 +1898,24 @@ Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3667. Memory consumption went from 123.5 MB to 123.4 MB. Total: 2.319900 ms (FindLiveObjects: 0.328600 ms CreateObjectMapping: 0.089800 ms MarkObjects: 1.856900 ms DeleteObjects: 0.043300 ms) +======= + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.45 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.5 KB). Loaded Objects now: 3602. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.500700 ms (FindLiveObjects: 0.190600 ms CreateObjectMapping: 0.081200 ms MarkObjects: 2.192200 ms DeleteObjects: 0.035800 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1093,6 +1926,10 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1100,6 +1937,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.951 seconds @@ -1147,6 +1985,53 @@ Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3670. Memory consumption went from 123.5 MB to 123.4 MB. Total: 3.746800 ms (FindLiveObjects: 0.280000 ms CreateObjectMapping: 0.106100 ms MarkObjects: 3.272800 ms DeleteObjects: 0.086300 ms) +======= +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.547 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.864 seconds +Domain Reload Profiling: 1411ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (353ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (199ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (865ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.33 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.5 KB). Loaded Objects now: 3605. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.622000 ms (FindLiveObjects: 0.183800 ms CreateObjectMapping: 0.090900 ms MarkObjects: 2.296600 ms DeleteObjects: 0.050100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1157,6 +2042,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1164,53 +2050,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.639 seconds -Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +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.492 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.385 seconds -Domain Reload Profiling: 2024ms - BeginReloadAssembly (123ms) +- Finished resetting the current domain, in 0.480 seconds +Domain Reload Profiling: 973ms + BeginReloadAssembly (114ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (32ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (23ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (441ms) - LoadAssemblies (254ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (200ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (246ms) - TypeCache.Refresh (241ms) - TypeCache.ScanAssembly (231ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1387ms) + ResolveRequiredComponents (3ms) + FinalizeReload (480ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (618ms) + SetupLoadedEditorAssemblies (253ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (440ms) - ProcessInitializeOnLoadMethodAttributes (41ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 5.06 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.39 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3673. -Memory consumption went from 123.5 MB to 123.4 MB. -Total: 5.099800 ms (FindLiveObjects: 0.634200 ms CreateObjectMapping: 0.215600 ms MarkObjects: 4.084000 ms DeleteObjects: 0.162300 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3608. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.846400 ms (FindLiveObjects: 0.358100 ms CreateObjectMapping: 0.179700 ms MarkObjects: 3.234000 ms DeleteObjects: 0.072600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1221,6 +2106,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1228,53 +2114,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.642 seconds -Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +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.739 seconds +Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.089 seconds -Domain Reload Profiling: 1731ms - BeginReloadAssembly (137ms) +- Finished resetting the current domain, in 0.774 seconds +Domain Reload Profiling: 1514ms + BeginReloadAssembly (151ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (439ms) - LoadAssemblies (244ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (516ms) + LoadAssemblies (319ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (255ms) - TypeCache.Refresh (250ms) - TypeCache.ScanAssembly (238ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1090ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (775ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (569ms) + SetupLoadedEditorAssemblies (323ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (11ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (407ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 3.40 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.55 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3676. -Memory consumption went from 123.5 MB to 123.4 MB. -Total: 5.920700 ms (FindLiveObjects: 0.794000 ms CreateObjectMapping: 0.181000 ms MarkObjects: 4.836300 ms DeleteObjects: 0.106800 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3611. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.170900 ms (FindLiveObjects: 0.209200 ms CreateObjectMapping: 0.082000 ms MarkObjects: 2.842000 ms DeleteObjects: 0.036500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1285,6 +2170,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1292,53 +2178,53 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.687 seconds -Refreshing native plugins compatible for Editor in 2.68 ms, found 3 plugins. +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.686 seconds +Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.074 seconds -Domain Reload Profiling: 1760ms - BeginReloadAssembly (143ms) +- Finished resetting the current domain, in 0.858 seconds +Domain Reload Profiling: 1544ms + BeginReloadAssembly (139ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (11ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (34ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (11ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (465ms) - LoadAssemblies (259ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (251ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (270ms) - TypeCache.Refresh (265ms) - TypeCache.ScanAssembly (254ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1074ms) + AnalyzeDomain (290ms) + TypeCache.Refresh (282ms) + TypeCache.ScanAssembly (272ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (859ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (472ms) + SetupLoadedEditorAssemblies (370ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (10ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (322ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (4ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3679. -Memory consumption went from 123.5 MB to 123.4 MB. -Total: 3.180700 ms (FindLiveObjects: 0.298800 ms CreateObjectMapping: 0.120400 ms MarkObjects: 2.708700 ms DeleteObjects: 0.051400 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3614. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.471800 ms (FindLiveObjects: 0.258400 ms CreateObjectMapping: 0.086400 ms MarkObjects: 3.068000 ms DeleteObjects: 0.057900 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1349,6 +2235,10 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1356,10 +2246,259 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.615 seconds -Refreshing native plugins compatible for Editor in 2.25 ms, found 3 plugins. +- Loaded All Assemblies, in 0.639 seconds +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.385 seconds +Domain Reload Profiling: 2024ms + BeginReloadAssembly (123ms) +======= +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.440 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.490 seconds +Domain Reload Profiling: 931ms + BeginReloadAssembly (101ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) +<<<<<<< HEAD + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (441ms) + LoadAssemblies (254ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (246ms) + TypeCache.Refresh (241ms) + TypeCache.ScanAssembly (231ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1387ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (618ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (105ms) + ProcessInitializeOnLoadAttributes (440ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 5.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3673. +Memory consumption went from 123.5 MB to 123.4 MB. +Total: 5.099800 ms (FindLiveObjects: 0.634200 ms CreateObjectMapping: 0.215600 ms MarkObjects: 4.084000 ms DeleteObjects: 0.162300 ms) +======= + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.46 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.5 KB). Loaded Objects now: 3617. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.586600 ms (FindLiveObjects: 0.350600 ms CreateObjectMapping: 0.122400 ms MarkObjects: 2.064500 ms DeleteObjects: 0.047900 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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 +<<<<<<< HEAD +Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.642 seconds +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +======= +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.450 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +<<<<<<< HEAD +- Finished resetting the current domain, in 1.089 seconds +Domain Reload Profiling: 1731ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (439ms) + LoadAssemblies (244ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (255ms) + TypeCache.Refresh (250ms) + TypeCache.ScanAssembly (238ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1090ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (569ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (407ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 3.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3676. +Memory consumption went from 123.5 MB to 123.4 MB. +Total: 5.920700 ms (FindLiveObjects: 0.794000 ms CreateObjectMapping: 0.181000 ms MarkObjects: 4.836300 ms DeleteObjects: 0.106800 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.687 seconds +Refreshing native plugins compatible for Editor in 2.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.074 seconds +Domain Reload Profiling: 1760ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (465ms) + LoadAssemblies (259ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (265ms) + TypeCache.ScanAssembly (254ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1074ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (472ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (105ms) + ProcessInitializeOnLoadAttributes (322ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3679. +Memory consumption went from 123.5 MB to 123.4 MB. +Total: 3.180700 ms (FindLiveObjects: 0.298800 ms CreateObjectMapping: 0.120400 ms MarkObjects: 2.708700 ms DeleteObjects: 0.051400 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.615 seconds +Refreshing native plugins compatible for Editor in 2.25 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly @@ -1558,10 +2697,16 @@ Mono: successfully reloaded assembly - Finished resetting the current domain, in 1.144 seconds Domain Reload Profiling: 1753ms BeginReloadAssembly (127ms) +======= +- Finished resetting the current domain, in 0.469 seconds +Domain Reload Profiling: 920ms + BeginReloadAssembly (101ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) +<<<<<<< HEAD CreateAndSetChildDomain (33ms) RebuildCommonClasses (32ms) RebuildNativeTypeToScriptingClass (9ms) @@ -1723,6 +2868,41 @@ Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3697. Memory consumption went from 123.5 MB to 123.5 MB. Total: 2.827800 ms (FindLiveObjects: 0.188100 ms CreateObjectMapping: 0.160400 ms MarkObjects: 2.419500 ms DeleteObjects: 0.058200 ms) +======= + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (470ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.62 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: 3620. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.559800 ms (FindLiveObjects: 0.193600 ms CreateObjectMapping: 0.089000 ms MarkObjects: 2.237900 ms DeleteObjects: 0.038800 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1733,6 +2913,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1740,53 +2921,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.645 seconds -Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +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.479 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.511 seconds -Domain Reload Profiling: 1155ms - BeginReloadAssembly (130ms) +- Finished resetting the current domain, in 0.714 seconds +Domain Reload Profiling: 1193ms + BeginReloadAssembly (98ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (445ms) - LoadAssemblies (240ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (203ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (254ms) - TypeCache.Refresh (249ms) - TypeCache.ScanAssembly (240ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (4ms) - FinalizeReload (511ms) + ResolveRequiredComponents (3ms) + FinalizeReload (714ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (237ms) + SetupLoadedEditorAssemblies (207ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (45ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (14ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (33ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 2.78 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 2.480700 ms (FindLiveObjects: 0.181900 ms CreateObjectMapping: 0.075000 ms MarkObjects: 2.182100 ms DeleteObjects: 0.040400 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3623. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.226200 ms (FindLiveObjects: 0.162400 ms CreateObjectMapping: 0.071700 ms MarkObjects: 1.958500 ms DeleteObjects: 0.032900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1797,6 +2977,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1804,53 +2985,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.633 seconds -Refreshing native plugins compatible for Editor in 3.70 ms, found 3 plugins. +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.441 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.305 seconds -Domain Reload Profiling: 1938ms - BeginReloadAssembly (123ms) +- Finished resetting the current domain, in 0.480 seconds +Domain Reload Profiling: 922ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (447ms) - LoadAssemblies (236ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (157ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (260ms) - TypeCache.Refresh (254ms) - TypeCache.ScanAssembly (244ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1306ms) + ResolveRequiredComponents (7ms) + FinalizeReload (481ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (584ms) + SetupLoadedEditorAssemblies (235ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (421ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 4.19 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3703. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 6.435000 ms (FindLiveObjects: 0.449700 ms CreateObjectMapping: 0.193500 ms MarkObjects: 5.649200 ms DeleteObjects: 0.140500 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3626. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.581600 ms (FindLiveObjects: 0.286600 ms CreateObjectMapping: 0.095500 ms MarkObjects: 2.161200 ms DeleteObjects: 0.037300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1861,6 +3041,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1868,53 +3049,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.616 seconds -Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. +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.444 seconds +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.291 seconds -Domain Reload Profiling: 1907ms - BeginReloadAssembly (123ms) +- Finished resetting the current domain, in 0.493 seconds +Domain Reload Profiling: 937ms + BeginReloadAssembly (99ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (31ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (432ms) - LoadAssemblies (238ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (160ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (244ms) - TypeCache.Refresh (240ms) - TypeCache.ScanAssembly (230ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (1292ms) + ResolveRequiredComponents (3ms) + FinalizeReload (494ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (579ms) + SetupLoadedEditorAssemblies (256ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (10ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (414ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 6.59 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3706. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 6.507900 ms (FindLiveObjects: 0.793000 ms CreateObjectMapping: 0.133000 ms MarkObjects: 5.463700 ms DeleteObjects: 0.114700 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3629. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.580500 ms (FindLiveObjects: 0.234400 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.224000 ms DeleteObjects: 0.037600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1925,6 +3105,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1932,53 +3113,65 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.664 seconds -Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. +- Loaded All Assemblies, in 0.645 seconds +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +======= +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.484 seconds +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.277 seconds -Domain Reload Profiling: 1940ms - BeginReloadAssembly (138ms) +<<<<<<< HEAD +- Finished resetting the current domain, in 0.511 seconds +Domain Reload Profiling: 1155ms + BeginReloadAssembly (130ms) +======= +- Finished resetting the current domain, in 0.685 seconds +Domain Reload Profiling: 1169ms + BeginReloadAssembly (106ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (32ms) - RebuildNativeTypeToScriptingClass (14ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (453ms) - LoadAssemblies (256ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (194ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (261ms) - TypeCache.Refresh (257ms) - TypeCache.ScanAssembly (247ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (1279ms) + FinalizeReload (685ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (591ms) + SetupLoadedEditorAssemblies (220ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (11ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (426ms) - ProcessInitializeOnLoadMethodAttributes (40ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3709. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.350000 ms (FindLiveObjects: 0.825300 ms CreateObjectMapping: 0.193800 ms MarkObjects: 4.242100 ms DeleteObjects: 0.084800 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3632. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.387400 ms (FindLiveObjects: 0.177200 ms CreateObjectMapping: 0.071000 ms MarkObjects: 2.100100 ms DeleteObjects: 0.038300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1989,6 +3182,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1996,53 +3190,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.667 seconds -Refreshing native plugins compatible for Editor in 2.91 ms, found 3 plugins. +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.513 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.154 seconds -Domain Reload Profiling: 1822ms - BeginReloadAssembly (141ms) +- Finished resetting the current domain, in 0.453 seconds +Domain Reload Profiling: 966ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (449ms) - LoadAssemblies (260ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (217ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (259ms) - TypeCache.Refresh (253ms) - TypeCache.ScanAssembly (244ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (172ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1156ms) + ResolveRequiredComponents (3ms) + FinalizeReload (454ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (560ms) + SetupLoadedEditorAssemblies (225ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (104ms) - ProcessInitializeOnLoadAttributes (392ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 6.82 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3712. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 6.544300 ms (FindLiveObjects: 1.081200 ms CreateObjectMapping: 0.595600 ms MarkObjects: 4.678500 ms DeleteObjects: 0.182000 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3635. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.440800 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.069700 ms MarkObjects: 2.128200 ms DeleteObjects: 0.036800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2053,6 +3246,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2060,53 +3254,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.035 seconds -Refreshing native plugins compatible for Editor in 5.39 ms, found 3 plugins. +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.459 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.650 seconds -Domain Reload Profiling: 2683ms - BeginReloadAssembly (190ms) +- Finished resetting the current domain, in 0.471 seconds +Domain Reload Profiling: 930ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - RebuildCommonClasses (47ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (47ms) - LoadAllAssembliesAndSetupDomain (731ms) - LoadAssemblies (391ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (181ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (426ms) - TypeCache.Refresh (414ms) - TypeCache.ScanAssembly (397ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1651ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (472ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (488ms) + SetupLoadedEditorAssemblies (233ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (107ms) - ProcessInitializeOnLoadAttributes (325ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3715. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 3.201000 ms (FindLiveObjects: 0.313500 ms CreateObjectMapping: 0.087800 ms MarkObjects: 2.741300 ms DeleteObjects: 0.056700 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3638. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.147200 ms (FindLiveObjects: 0.183800 ms CreateObjectMapping: 0.073900 ms MarkObjects: 1.855300 ms DeleteObjects: 0.033600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2117,6 +3310,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2124,53 +3318,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.619 seconds -Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins. +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.442 seconds +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.236 seconds -Domain Reload Profiling: 1856ms - BeginReloadAssembly (135ms) +- Finished resetting the current domain, in 0.462 seconds +Domain Reload Profiling: 904ms + BeginReloadAssembly (101ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (423ms) - LoadAssemblies (245ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (162ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (245ms) - TypeCache.Refresh (239ms) - TypeCache.ScanAssembly (230ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (164ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1237ms) + ResolveRequiredComponents (3ms) + FinalizeReload (463ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (578ms) + SetupLoadedEditorAssemblies (227ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (97ms) - ProcessInitializeOnLoadAttributes (415ms) - ProcessInitializeOnLoadMethodAttributes (39ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 6.93 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3718. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.789600 ms (FindLiveObjects: 0.340700 ms CreateObjectMapping: 0.121500 ms MarkObjects: 5.013100 ms DeleteObjects: 0.312200 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3641. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.368500 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.023700 ms DeleteObjects: 0.036600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2181,6 +3374,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2188,53 +3382,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.640 seconds -Refreshing native plugins compatible for Editor in 2.33 ms, found 3 plugins. +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.447 seconds +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.208 seconds -Domain Reload Profiling: 1846ms - BeginReloadAssembly (121ms) +- Finished resetting the current domain, in 0.431 seconds +Domain Reload Profiling: 879ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (443ms) - LoadAssemblies (240ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (293ms) + LoadAssemblies (164ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (250ms) - TypeCache.Refresh (245ms) - TypeCache.ScanAssembly (235ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1209ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (432ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (595ms) + SetupLoadedEditorAssemblies (210ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (102ms) - ProcessInitializeOnLoadAttributes (421ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (12ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 4.06 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3721. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.141100 ms (FindLiveObjects: 0.759900 ms CreateObjectMapping: 0.217100 ms MarkObjects: 4.091100 ms DeleteObjects: 0.071300 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3644. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.514600 ms (FindLiveObjects: 0.177400 ms CreateObjectMapping: 0.069600 ms MarkObjects: 2.232100 ms DeleteObjects: 0.034800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2245,6 +3438,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2252,53 +3446,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.264 seconds -Refreshing native plugins compatible for Editor in 55.62 ms, found 3 plugins. +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.446 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.197 seconds -Domain Reload Profiling: 2459ms - BeginReloadAssembly (202ms) +- Finished resetting the current domain, in 0.490 seconds +Domain Reload Profiling: 936ms + BeginReloadAssembly (98ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - RebuildCommonClasses (73ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (52ms) - LoadAllAssembliesAndSetupDomain (917ms) - LoadAssemblies (385ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (161ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (632ms) - TypeCache.Refresh (584ms) - TypeCache.ScanAssembly (574ms) - ScanForSourceGeneratedMonoScriptInfo (29ms) - ResolveRequiredComponents (20ms) - FinalizeReload (1198ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (490ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (473ms) + SetupLoadedEditorAssemblies (249ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (333ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 1.79 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3724. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 2.200700 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.081000 ms MarkObjects: 1.860900 ms DeleteObjects: 0.040400 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3647. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.286200 ms (FindLiveObjects: 0.320500 ms CreateObjectMapping: 0.072900 ms MarkObjects: 1.858400 ms DeleteObjects: 0.033500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2309,6 +3502,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2316,53 +3510,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.620 seconds -Refreshing native plugins compatible for Editor in 2.92 ms, found 3 plugins. +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.671 seconds +Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.193 seconds -Domain Reload Profiling: 1814ms - BeginReloadAssembly (130ms) +- Finished resetting the current domain, in 0.803 seconds +Domain Reload Profiling: 1474ms + BeginReloadAssembly (146ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (421ms) - LoadAssemblies (246ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (247ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (236ms) - TypeCache.Refresh (232ms) - TypeCache.ScanAssembly (223ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (1194ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (262ms) + TypeCache.ScanAssembly (253ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (6ms) + FinalizeReload (804ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (567ms) + SetupLoadedEditorAssemblies (347ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (408ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 2.82 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3727. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 6.022800 ms (FindLiveObjects: 0.494400 ms CreateObjectMapping: 0.136700 ms MarkObjects: 5.273400 ms DeleteObjects: 0.115600 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3650. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.265300 ms (FindLiveObjects: 0.292300 ms CreateObjectMapping: 0.088400 ms MarkObjects: 2.844700 ms DeleteObjects: 0.039100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2373,6 +3566,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2380,53 +3574,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.179 seconds -Refreshing native plugins compatible for Editor in 5.24 ms, found 3 plugins. +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.441 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.317 seconds -Domain Reload Profiling: 2494ms - BeginReloadAssembly (190ms) +- Finished resetting the current domain, in 0.467 seconds +Domain Reload Profiling: 908ms + BeginReloadAssembly (101ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - RebuildCommonClasses (53ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (875ms) - LoadAssemblies (441ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (164ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (522ms) - TypeCache.Refresh (515ms) - TypeCache.ScanAssembly (491ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1318ms) + ResolveRequiredComponents (3ms) + FinalizeReload (467ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (548ms) + SetupLoadedEditorAssemblies (240ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (390ms) - ProcessInitializeOnLoadMethodAttributes (38ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 3.62 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 8.158700 ms (FindLiveObjects: 0.950800 ms CreateObjectMapping: 0.263500 ms MarkObjects: 6.858400 ms DeleteObjects: 0.081900 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3653. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.407500 ms (FindLiveObjects: 0.285700 ms CreateObjectMapping: 0.073600 ms MarkObjects: 2.006900 ms DeleteObjects: 0.040400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2437,6 +3630,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2444,53 +3638,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.150 seconds -Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +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.686 seconds +Refreshing native plugins compatible for Editor in 2.35 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.269 seconds -Domain Reload Profiling: 2416ms - BeginReloadAssembly (220ms) +- Finished resetting the current domain, in 0.786 seconds +Domain Reload Profiling: 1472ms + BeginReloadAssembly (133ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (54ms) - RebuildNativeTypeToScriptingClass (18ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (811ms) - LoadAssemblies (520ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (272ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (400ms) - TypeCache.Refresh (385ms) - TypeCache.ScanAssembly (369ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (11ms) - FinalizeReload (1269ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (256ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (786ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (452ms) + SetupLoadedEditorAssemblies (340ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (81ms) - ProcessInitializeOnLoadAttributes (320ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 3.46 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 3.055600 ms (FindLiveObjects: 0.316000 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.567200 ms DeleteObjects: 0.055500 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3656. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.952900 ms (FindLiveObjects: 0.275000 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.548700 ms DeleteObjects: 0.043100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2501,6 +3694,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2508,53 +3702,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.608 seconds -Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +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.486 seconds +Refreshing native plugins compatible for Editor in 1.92 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.256 seconds -Domain Reload Profiling: 1863ms - BeginReloadAssembly (130ms) +- Finished resetting the current domain, in 0.795 seconds +Domain Reload Profiling: 1282ms + BeginReloadAssembly (107ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (409ms) - LoadAssemblies (231ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (198ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (231ms) - TypeCache.Refresh (227ms) - TypeCache.ScanAssembly (219ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (1257ms) + ResolveRequiredComponents (3ms) + FinalizeReload (795ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (567ms) + SetupLoadedEditorAssemblies (248ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (402ms) - ProcessInitializeOnLoadMethodAttributes (42ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 3.55 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3736. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.675700 ms (FindLiveObjects: 0.776800 ms CreateObjectMapping: 0.220600 ms MarkObjects: 4.446600 ms DeleteObjects: 0.229200 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3659. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.196600 ms (FindLiveObjects: 0.368900 ms CreateObjectMapping: 0.123300 ms MarkObjects: 2.653800 ms DeleteObjects: 0.048900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2565,6 +3758,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2572,53 +3766,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.613 seconds -Refreshing native plugins compatible for Editor in 2.53 ms, found 3 plugins. +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.672 seconds +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.172 seconds -Domain Reload Profiling: 1785ms - BeginReloadAssembly (120ms) +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1431ms + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (25ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (32ms) RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (424ms) - LoadAssemblies (238ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (257ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (236ms) - TypeCache.Refresh (231ms) - TypeCache.ScanAssembly (220ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1173ms) + AnalyzeDomain (271ms) + TypeCache.Refresh (264ms) + TypeCache.ScanAssembly (255ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (759ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (561ms) + SetupLoadedEditorAssemblies (318ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (10ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (90ms) - ProcessInitializeOnLoadAttributes (406ms) - ProcessInitializeOnLoadMethodAttributes (33ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 2.77 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.17 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3739. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 4.692400 ms (FindLiveObjects: 0.907500 ms CreateObjectMapping: 0.203400 ms MarkObjects: 3.373900 ms DeleteObjects: 0.205700 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3662. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.204700 ms (FindLiveObjects: 0.269800 ms CreateObjectMapping: 0.096200 ms MarkObjects: 2.720700 ms DeleteObjects: 0.116600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2629,6 +3822,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2636,53 +3830,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.619 seconds -Refreshing native plugins compatible for Editor in 2.66 ms, found 3 plugins. +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.629 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.739 seconds -Domain Reload Profiling: 1357ms - BeginReloadAssembly (129ms) +- Finished resetting the current domain, in 0.510 seconds +Domain Reload Profiling: 1138ms + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (14ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (424ms) - LoadAssemblies (253ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (261ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (231ms) - TypeCache.Refresh (226ms) - TypeCache.ScanAssembly (217ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (739ms) + AnalyzeDomain (224ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (212ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (510ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (244ms) + SetupLoadedEditorAssemblies (247ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (4ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3742. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 3.275800 ms (FindLiveObjects: 0.189400 ms CreateObjectMapping: 0.073500 ms MarkObjects: 2.963200 ms DeleteObjects: 0.048400 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3665. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.826700 ms (FindLiveObjects: 0.275700 ms CreateObjectMapping: 0.101000 ms MarkObjects: 2.404000 ms DeleteObjects: 0.044900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2693,6 +3886,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2700,53 +3894,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.617 seconds -Refreshing native plugins compatible for Editor in 2.72 ms, found 3 plugins. +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.471 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.180 seconds -Domain Reload Profiling: 1797ms - BeginReloadAssembly (136ms) +- Finished resetting the current domain, in 0.691 seconds +Domain Reload Profiling: 1162ms + BeginReloadAssembly (107ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (25ms) - LoadAllAssembliesAndSetupDomain (415ms) - LoadAssemblies (234ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (190ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (242ms) - TypeCache.Refresh (237ms) - TypeCache.ScanAssembly (224ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1181ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (691ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (568ms) + SetupLoadedEditorAssemblies (211ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (415ms) - ProcessInitializeOnLoadMethodAttributes (30ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Refreshing native plugins compatible for Editor in 4.41 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3745. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.994200 ms (FindLiveObjects: 0.588800 ms CreateObjectMapping: 0.127100 ms MarkObjects: 5.120300 ms DeleteObjects: 0.156000 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3668. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.485100 ms (FindLiveObjects: 0.224900 ms CreateObjectMapping: 0.092300 ms MarkObjects: 2.131600 ms DeleteObjects: 0.035100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2757,6 +3950,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2764,53 +3958,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.140 seconds -Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. +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.438 seconds +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.052 seconds -Domain Reload Profiling: 2190ms - BeginReloadAssembly (204ms) +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 910ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - RebuildCommonClasses (51ms) - RebuildNativeTypeToScriptingClass (19ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (824ms) - LoadAssemblies (435ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (165ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (482ms) - TypeCache.Refresh (470ms) - TypeCache.ScanAssembly (445ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (7ms) - FinalizeReload (1053ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (466ms) + SetupLoadedEditorAssemblies (250ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (79ms) - ProcessInitializeOnLoadAttributes (337ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 4.75 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3748. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.389500 ms (FindLiveObjects: 0.334500 ms CreateObjectMapping: 0.105600 ms MarkObjects: 4.872600 ms DeleteObjects: 0.074600 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3671. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.655600 ms (FindLiveObjects: 0.297500 ms CreateObjectMapping: 0.099300 ms MarkObjects: 2.176000 ms DeleteObjects: 0.081900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2821,6 +4014,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2828,53 +4022,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.686 seconds -Refreshing native plugins compatible for Editor in 7.05 ms, found 3 plugins. +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.746 seconds +Refreshing native plugins compatible for Editor in 3.49 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.380 seconds -Domain Reload Profiling: 2066ms - BeginReloadAssembly (113ms) +- Finished resetting the current domain, in 1.159 seconds +Domain Reload Profiling: 1905ms + BeginReloadAssembly (149ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (507ms) - LoadAssemblies (241ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (515ms) + LoadAssemblies (303ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (310ms) - TypeCache.Refresh (300ms) - TypeCache.ScanAssembly (283ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1380ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (248ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1160ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (587ms) + SetupLoadedEditorAssemblies (354ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (423ms) - ProcessInitializeOnLoadMethodAttributes (40ms) - AfterProcessingInitializeOnLoad (4ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 3.40 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 6.178500 ms (FindLiveObjects: 0.885200 ms CreateObjectMapping: 0.148400 ms MarkObjects: 4.778400 ms DeleteObjects: 0.363600 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3674. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 12.963200 ms (FindLiveObjects: 0.265900 ms CreateObjectMapping: 0.415300 ms MarkObjects: 12.231400 ms DeleteObjects: 0.049600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2885,6 +4078,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2892,53 +4086,71 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.061 seconds -Refreshing native plugins compatible for Editor in 29.40 ms, found 3 plugins. +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.621 seconds +Refreshing native plugins compatible for Editor in 3.18 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.149 seconds -Domain Reload Profiling: 2208ms - BeginReloadAssembly (185ms) +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 1126ms + BeginReloadAssembly (137ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - RebuildCommonClasses (46ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (54ms) - LoadAllAssembliesAndSetupDomain (756ms) - LoadAssemblies (379ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (456ms) - TypeCache.Refresh (440ms) - TypeCache.ScanAssembly (420ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (12ms) - FinalizeReload (1150ms) +<<<<<<< HEAD + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (445ms) + LoadAssemblies (240ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (254ms) + TypeCache.Refresh (249ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (511ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (339ms) + SetupLoadedEditorAssemblies (237ms) +======= + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (259ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (224ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (211ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (505ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (218ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 2.908000 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.550800 ms DeleteObjects: 0.050100 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3677. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.303900 ms (FindLiveObjects: 0.185700 ms CreateObjectMapping: 0.073300 ms MarkObjects: 2.007600 ms DeleteObjects: 0.036500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2949,6 +4161,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2956,53 +4169,54 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.627 seconds -Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +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.673 seconds +Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.340 seconds -Domain Reload Profiling: 1967ms - BeginReloadAssembly (128ms) +- Finished resetting the current domain, in 1.022 seconds +Domain Reload Profiling: 1695ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) + CreateAndSetChildDomain (42ms) RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (435ms) - LoadAssemblies (235ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (267ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (253ms) + AnalyzeDomain (258ms) TypeCache.Refresh (250ms) - TypeCache.ScanAssembly (241ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (1341ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1023ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (605ms) + SetupLoadedEditorAssemblies (324ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (10ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (87ms) - ProcessInitializeOnLoadAttributes (444ms) - ProcessInitializeOnLoadMethodAttributes (39ms) - AfterProcessingInitializeOnLoad (8ms) +<<<<<<< HEAD + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 7.17 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.78 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. Memory consumption went from 123.5 MB to 123.5 MB. -Total: 3.939300 ms (FindLiveObjects: 0.563200 ms CreateObjectMapping: 0.333100 ms MarkObjects: 2.937600 ms DeleteObjects: 0.103500 ms) +Total: 2.480700 ms (FindLiveObjects: 0.181900 ms CreateObjectMapping: 0.075000 ms MarkObjects: 2.182100 ms DeleteObjects: 0.040400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3022,51 +4236,51 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.597 seconds -Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 3.70 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.775 seconds -Domain Reload Profiling: 1371ms +- Finished resetting the current domain, in 1.305 seconds +Domain Reload Profiling: 1938ms BeginReloadAssembly (123ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) + CreateAndSetChildDomain (35ms) RebuildCommonClasses (29ms) RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (405ms) - LoadAssemblies (221ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (447ms) + LoadAssemblies (236ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (227ms) - TypeCache.Refresh (222ms) - TypeCache.ScanAssembly (211ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (776ms) + AnalyzeDomain (260ms) + TypeCache.Refresh (254ms) + TypeCache.ScanAssembly (244ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1306ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (295ms) + SetupLoadedEditorAssemblies (584ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (8ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (200ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (5ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 4.19 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3703. Memory consumption went from 123.5 MB to 123.5 MB. -Total: 3.598500 ms (FindLiveObjects: 0.378300 ms CreateObjectMapping: 0.089600 ms MarkObjects: 3.048300 ms DeleteObjects: 0.080300 ms) +Total: 6.435000 ms (FindLiveObjects: 0.449700 ms CreateObjectMapping: 0.193500 ms MarkObjects: 5.649200 ms DeleteObjects: 0.140500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3086,51 +4300,66 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.625 seconds -Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +- Loaded All Assemblies, in 0.616 seconds +Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.231 seconds -Domain Reload Profiling: 1856ms - BeginReloadAssembly (136ms) +- Finished resetting the current domain, in 1.291 seconds +Domain Reload Profiling: 1907ms + BeginReloadAssembly (123ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) + CreateAndSetChildDomain (31ms) RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (423ms) - LoadAssemblies (247ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (238ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (238ms) - TypeCache.Refresh (233ms) - TypeCache.ScanAssembly (223ms) + AnalyzeDomain (244ms) + TypeCache.Refresh (240ms) + TypeCache.ScanAssembly (230ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1232ms) + ResolveRequiredComponents (4ms) + FinalizeReload (1292ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (564ms) + SetupLoadedEditorAssemblies (579ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (10ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (406ms) - ProcessInitializeOnLoadMethodAttributes (36ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (414ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Refreshing native plugins compatible for Editor in 3.78 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 6.59 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3763. +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3706. Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.999000 ms (FindLiveObjects: 0.746000 ms CreateObjectMapping: 0.162800 ms MarkObjects: 5.021400 ms DeleteObjects: 0.065100 ms) +Total: 6.507900 ms (FindLiveObjects: 0.793000 ms CreateObjectMapping: 0.133000 ms MarkObjects: 5.463700 ms DeleteObjects: 0.114700 ms) +======= + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.99 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: 3680. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.217600 ms (FindLiveObjects: 0.243100 ms CreateObjectMapping: 0.083300 ms MarkObjects: 2.843000 ms DeleteObjects: 0.047200 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3141,6 +4370,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3148,53 +4378,3646 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.667 seconds -Refreshing native plugins compatible for Editor in 2.39 ms, found 3 plugins. +- Loaded All Assemblies, in 0.664 seconds +Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. +======= +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.691 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.680 seconds -Domain Reload Profiling: 1345ms - BeginReloadAssembly (141ms) +<<<<<<< HEAD +- Finished resetting the current domain, in 1.277 seconds +Domain Reload Profiling: 1940ms + BeginReloadAssembly (138ms) +======= +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 1176ms + BeginReloadAssembly (157ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (28ms) +<<<<<<< HEAD + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (25ms) LoadAllAssembliesAndSetupDomain (453ms) - LoadAssemblies (249ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (261ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1279ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (591ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (11ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (426ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3709. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.350000 ms (FindLiveObjects: 0.825300 ms CreateObjectMapping: 0.193800 ms MarkObjects: 4.242100 ms DeleteObjects: 0.084800 ms) +======= + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (477ms) + LoadAssemblies (282ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (271ms) + TypeCache.Refresh (268ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (485ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.78 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: 3683. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.897900 ms (FindLiveObjects: 0.359500 ms CreateObjectMapping: 0.223700 ms MarkObjects: 2.270200 ms DeleteObjects: 0.043700 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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 -> +<<<<<<< HEAD +======= + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + 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 +<<<<<<< HEAD +Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.667 seconds +Refreshing native plugins compatible for Editor in 2.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.154 seconds +Domain Reload Profiling: 1822ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (449ms) + LoadAssemblies (260ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (259ms) + TypeCache.Refresh (253ms) + TypeCache.ScanAssembly (244ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1156ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (560ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (392ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 6.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3712. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 6.544300 ms (FindLiveObjects: 1.081200 ms CreateObjectMapping: 0.595600 ms MarkObjects: 4.678500 ms DeleteObjects: 0.182000 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.035 seconds +Refreshing native plugins compatible for Editor in 5.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.650 seconds +Domain Reload Profiling: 2683ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (47ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (47ms) + LoadAllAssembliesAndSetupDomain (731ms) + LoadAssemblies (391ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (426ms) + TypeCache.Refresh (414ms) + TypeCache.ScanAssembly (397ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1651ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (488ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (325ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3715. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 3.201000 ms (FindLiveObjects: 0.313500 ms CreateObjectMapping: 0.087800 ms MarkObjects: 2.741300 ms DeleteObjects: 0.056700 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.619 seconds +Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.236 seconds +Domain Reload Profiling: 1856ms + BeginReloadAssembly (135ms) +======= +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.452 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.433 seconds +Domain Reload Profiling: 886ms + BeginReloadAssembly (102ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) +<<<<<<< HEAD + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (423ms) + LoadAssemblies (245ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (245ms) + TypeCache.Refresh (239ms) + TypeCache.ScanAssembly (230ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1237ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (578ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 6.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3718. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.789600 ms (FindLiveObjects: 0.340700 ms CreateObjectMapping: 0.121500 ms MarkObjects: 5.013100 ms DeleteObjects: 0.312200 ms) +======= + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (434ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (213ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.01 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: 3686. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.470000 ms (FindLiveObjects: 0.323200 ms CreateObjectMapping: 0.121500 ms MarkObjects: 2.946000 ms DeleteObjects: 0.077500 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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 +<<<<<<< HEAD +Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.640 seconds +Refreshing native plugins compatible for Editor in 2.33 ms, found 3 plugins. +======= +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.438 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +<<<<<<< HEAD +- Finished resetting the current domain, in 1.208 seconds +Domain Reload Profiling: 1846ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (240ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (250ms) + TypeCache.Refresh (245ms) + TypeCache.ScanAssembly (235ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1209ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (595ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (102ms) + ProcessInitializeOnLoadAttributes (421ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 4.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3721. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.141100 ms (FindLiveObjects: 0.759900 ms CreateObjectMapping: 0.217100 ms MarkObjects: 4.091100 ms DeleteObjects: 0.071300 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.264 seconds +Refreshing native plugins compatible for Editor in 55.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.197 seconds +Domain Reload Profiling: 2459ms + BeginReloadAssembly (202ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (73ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (52ms) + LoadAllAssembliesAndSetupDomain (917ms) + LoadAssemblies (385ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (632ms) + TypeCache.Refresh (584ms) + TypeCache.ScanAssembly (574ms) + ScanForSourceGeneratedMonoScriptInfo (29ms) + ResolveRequiredComponents (20ms) + FinalizeReload (1198ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (473ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (333ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3724. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 2.200700 ms (FindLiveObjects: 0.216700 ms CreateObjectMapping: 0.081000 ms MarkObjects: 1.860900 ms DeleteObjects: 0.040400 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.620 seconds +Refreshing native plugins compatible for Editor in 2.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.193 seconds +Domain Reload Profiling: 1814ms + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (421ms) + LoadAssemblies (246ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (236ms) + TypeCache.Refresh (232ms) + TypeCache.ScanAssembly (223ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1194ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (567ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 2.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3727. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 6.022800 ms (FindLiveObjects: 0.494400 ms CreateObjectMapping: 0.136700 ms MarkObjects: 5.273400 ms DeleteObjects: 0.115600 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.179 seconds +Refreshing native plugins compatible for Editor in 5.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.317 seconds +Domain Reload Profiling: 2494ms + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (53ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (875ms) + LoadAssemblies (441ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (522ms) + TypeCache.Refresh (515ms) + TypeCache.ScanAssembly (491ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1318ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (548ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (390ms) + ProcessInitializeOnLoadMethodAttributes (38ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 3.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 8.158700 ms (FindLiveObjects: 0.950800 ms CreateObjectMapping: 0.263500 ms MarkObjects: 6.858400 ms DeleteObjects: 0.081900 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.150 seconds +Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.269 seconds +Domain Reload Profiling: 2416ms + BeginReloadAssembly (220ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (54ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (811ms) + LoadAssemblies (520ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (400ms) + TypeCache.Refresh (385ms) + TypeCache.ScanAssembly (369ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (11ms) + FinalizeReload (1269ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (452ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (320ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 3.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 3.055600 ms (FindLiveObjects: 0.316000 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.567200 ms DeleteObjects: 0.055500 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.608 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.256 seconds +Domain Reload Profiling: 1863ms + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (231ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (231ms) + TypeCache.Refresh (227ms) + TypeCache.ScanAssembly (219ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (1257ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (567ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (402ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 3.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3736. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.675700 ms (FindLiveObjects: 0.776800 ms CreateObjectMapping: 0.220600 ms MarkObjects: 4.446600 ms DeleteObjects: 0.229200 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.613 seconds +Refreshing native plugins compatible for Editor in 2.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.172 seconds +Domain Reload Profiling: 1785ms + BeginReloadAssembly (120ms) +======= +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 939ms + BeginReloadAssembly (104ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) +<<<<<<< HEAD + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (424ms) + LoadAssemblies (238ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (236ms) + TypeCache.Refresh (231ms) + TypeCache.ScanAssembly (220ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1173ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (561ms) +======= + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (501ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (268ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (406ms) + ProcessInitializeOnLoadMethodAttributes (33ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 2.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3739. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 4.692400 ms (FindLiveObjects: 0.907500 ms CreateObjectMapping: 0.203400 ms MarkObjects: 3.373900 ms DeleteObjects: 0.205700 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.619 seconds +Refreshing native plugins compatible for Editor in 2.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.739 seconds +Domain Reload Profiling: 1357ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (424ms) + LoadAssemblies (253ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (231ms) + TypeCache.Refresh (226ms) + TypeCache.ScanAssembly (217ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (739ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) +<<<<<<< HEAD + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3742. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 3.275800 ms (FindLiveObjects: 0.189400 ms CreateObjectMapping: 0.073500 ms MarkObjects: 2.963200 ms DeleteObjects: 0.048400 ms) +======= + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.40 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: 3689. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.721400 ms (FindLiveObjects: 0.278000 ms CreateObjectMapping: 0.102800 ms MarkObjects: 2.297900 ms DeleteObjects: 0.041300 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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 +<<<<<<< HEAD +Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.617 seconds +Refreshing native plugins compatible for Editor in 2.72 ms, found 3 plugins. +======= +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.487 seconds +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +<<<<<<< HEAD +- Finished resetting the current domain, in 1.180 seconds +Domain Reload Profiling: 1797ms + BeginReloadAssembly (136ms) +======= +- Finished resetting the current domain, in 0.610 seconds +Domain Reload Profiling: 1097ms + BeginReloadAssembly (114ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) +<<<<<<< HEAD + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (415ms) + LoadAssemblies (234ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (242ms) + TypeCache.Refresh (237ms) + TypeCache.ScanAssembly (224ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1181ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (568ms) +======= + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (323ms) + LoadAssemblies (194ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (610ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (229ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) +<<<<<<< HEAD + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Refreshing native plugins compatible for Editor in 4.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3745. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.994200 ms (FindLiveObjects: 0.588800 ms CreateObjectMapping: 0.127100 ms MarkObjects: 5.120300 ms DeleteObjects: 0.156000 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.140 seconds +Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.052 seconds +Domain Reload Profiling: 2190ms + BeginReloadAssembly (204ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (51ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (824ms) + LoadAssemblies (435ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (482ms) + TypeCache.Refresh (470ms) + TypeCache.ScanAssembly (445ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1053ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (466ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (337ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 4.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3748. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.389500 ms (FindLiveObjects: 0.334500 ms CreateObjectMapping: 0.105600 ms MarkObjects: 4.872600 ms DeleteObjects: 0.074600 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.686 seconds +Refreshing native plugins compatible for Editor in 7.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.380 seconds +Domain Reload Profiling: 2066ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (507ms) + LoadAssemblies (241ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (310ms) + TypeCache.Refresh (300ms) + TypeCache.ScanAssembly (283ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1380ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (587ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (423ms) + ProcessInitializeOnLoadMethodAttributes (40ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 3.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 6.178500 ms (FindLiveObjects: 0.885200 ms CreateObjectMapping: 0.148400 ms MarkObjects: 4.778400 ms DeleteObjects: 0.363600 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.061 seconds +Refreshing native plugins compatible for Editor in 29.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.149 seconds +Domain Reload Profiling: 2208ms + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (46ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (54ms) + LoadAllAssembliesAndSetupDomain (756ms) + LoadAssemblies (379ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (456ms) + TypeCache.Refresh (440ms) + TypeCache.ScanAssembly (420ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (12ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 2.908000 ms (FindLiveObjects: 0.228300 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.550800 ms DeleteObjects: 0.050100 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.627 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.340 seconds +Domain Reload Profiling: 1967ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (435ms) + LoadAssemblies (235ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (253ms) + TypeCache.Refresh (250ms) + TypeCache.ScanAssembly (241ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1341ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (605ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (444ms) + ProcessInitializeOnLoadMethodAttributes (39ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 7.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 3.939300 ms (FindLiveObjects: 0.563200 ms CreateObjectMapping: 0.333100 ms MarkObjects: 2.937600 ms DeleteObjects: 0.103500 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.597 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.775 seconds +Domain Reload Profiling: 1371ms + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (405ms) + LoadAssemblies (221ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (227ms) + TypeCache.Refresh (222ms) + TypeCache.ScanAssembly (211ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (776ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (295ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (200ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 3.598500 ms (FindLiveObjects: 0.378300 ms CreateObjectMapping: 0.089600 ms MarkObjects: 3.048300 ms DeleteObjects: 0.080300 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.625 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.231 seconds +Domain Reload Profiling: 1856ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (423ms) + LoadAssemblies (247ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (238ms) + TypeCache.Refresh (233ms) + TypeCache.ScanAssembly (223ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1232ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (564ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (406ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 3.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3763. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.999000 ms (FindLiveObjects: 0.746000 ms CreateObjectMapping: 0.162800 ms MarkObjects: 5.021400 ms DeleteObjects: 0.065100 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.667 seconds +Refreshing native plugins compatible for Editor in 2.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.680 seconds +Domain Reload Profiling: 1345ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (249ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (258ms) + TypeCache.ScanAssembly (245ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (4ms) + FinalizeReload (680ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 2.928100 ms (FindLiveObjects: 0.269600 ms CreateObjectMapping: 0.081100 ms MarkObjects: 2.507400 ms DeleteObjects: 0.067200 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.606 seconds +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.288 seconds +Domain Reload Profiling: 1894ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (403ms) + LoadAssemblies (236ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (226ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (212ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1289ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (580ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (416ms) + ProcessInitializeOnLoadMethodAttributes (41ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3769. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 4.992800 ms (FindLiveObjects: 0.273800 ms CreateObjectMapping: 0.126000 ms MarkObjects: 4.404600 ms DeleteObjects: 0.183800 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.179 seconds +Refreshing native plugins compatible for Editor in 6.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.147 seconds +Domain Reload Profiling: 2324ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (58ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (847ms) + LoadAssemblies (486ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (473ms) + TypeCache.Refresh (461ms) + TypeCache.ScanAssembly (399ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (9ms) + FinalizeReload (1148ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (444ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (313ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 3.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 4.011500 ms (FindLiveObjects: 0.335700 ms CreateObjectMapping: 0.115200 ms MarkObjects: 3.497000 ms DeleteObjects: 0.061600 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.612 seconds +Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.266 seconds +Domain Reload Profiling: 1878ms + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (421ms) + LoadAssemblies (226ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (248ms) + TypeCache.Refresh (244ms) + TypeCache.ScanAssembly (233ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1267ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (609ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (428ms) + ProcessInitializeOnLoadMethodAttributes (53ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 4.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 5.711700 ms (FindLiveObjects: 0.989700 ms CreateObjectMapping: 0.568300 ms MarkObjects: 4.054300 ms DeleteObjects: 0.097000 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.182 seconds +Refreshing native plugins compatible for Editor in 4.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.068 seconds +Domain Reload Profiling: 2248ms + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (48ms) + RebuildNativeTypeToScriptingClass (17ms) + initialDomainReloadingComplete (41ms) + LoadAllAssembliesAndSetupDomain (865ms) + LoadAssemblies (500ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (474ms) + TypeCache.Refresh (462ms) + TypeCache.ScanAssembly (449ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1069ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (455ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (327ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 2.686500 ms (FindLiveObjects: 0.215000 ms CreateObjectMapping: 0.077100 ms MarkObjects: 2.331000 ms DeleteObjects: 0.062400 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 C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.630 seconds +Refreshing native plugins compatible for Editor in 2.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.257 seconds +Domain Reload Profiling: 1885ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (424ms) + LoadAssemblies (235ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (242ms) + TypeCache.Refresh (237ms) + TypeCache.ScanAssembly (227ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1257ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (559ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (9ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (394ms) + ProcessInitializeOnLoadMethodAttributes (34ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Refreshing native plugins compatible for Editor in 4.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3781. +Memory consumption went from 123.5 MB to 123.5 MB. +Total: 4.932600 ms (FindLiveObjects: 0.698800 ms CreateObjectMapping: 0.190800 ms MarkObjects: 3.959400 ms DeleteObjects: 0.081600 ms) +======= + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.23 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.5 KB). Loaded Objects now: 3692. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.466200 ms (FindLiveObjects: 0.184400 ms CreateObjectMapping: 0.069200 ms MarkObjects: 2.178900 ms DeleteObjects: 0.032800 ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 + +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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.447 seconds +Refreshing native plugins compatible for Editor in 3.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.433 seconds +Domain Reload Profiling: 880ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (433ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (214ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 4.23 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: 3695. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.341400 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.078300 ms MarkObjects: 2.025600 ms DeleteObjects: 0.036700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.696 seconds +Refreshing native plugins compatible for Editor in 2.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.771 seconds +Domain Reload Profiling: 1467ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (288ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (258ms) + TypeCache.Refresh (246ms) + TypeCache.ScanAssembly (235ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (10ms) + FinalizeReload (771ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.94 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: 3698. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.436400 ms (FindLiveObjects: 0.296700 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.993200 ms DeleteObjects: 0.058400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.649 seconds +Refreshing native plugins compatible for Editor in 3.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.693 seconds +Domain Reload Profiling: 1342ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (440ms) + LoadAssemblies (253ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (260ms) + TypeCache.Refresh (255ms) + TypeCache.ScanAssembly (245ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (693ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.06 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: 3701. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.720300 ms (FindLiveObjects: 0.260500 ms CreateObjectMapping: 0.151700 ms MarkObjects: 2.262100 ms DeleteObjects: 0.045100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.703 seconds +Refreshing native plugins compatible for Editor in 2.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.804 seconds +Domain Reload Profiling: 1507ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (493ms) + LoadAssemblies (267ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (298ms) + TypeCache.Refresh (289ms) + TypeCache.ScanAssembly (277ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (804ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.46 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: 3704. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.091400 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.100800 ms MarkObjects: 2.671200 ms DeleteObjects: 0.049300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.453 seconds +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.498 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (499ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (260ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.39 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: 3707. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.430900 ms (FindLiveObjects: 0.277800 ms CreateObjectMapping: 0.092200 ms MarkObjects: 2.025500 ms DeleteObjects: 0.034700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.693 seconds +Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1452ms + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (275ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (760ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.30 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: 3710. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.841100 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.095600 ms MarkObjects: 2.433500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2164.764004 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd8b2fbac2e66fa3fc37d663033363fd') in 0.204145 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +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.470 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.487 seconds +Domain Reload Profiling: 957ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (189ms) + TypeCache.ScanAssembly (182ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (487ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3721. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.810200 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.094800 ms MarkObjects: 2.451700 ms DeleteObjects: 0.036300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.448 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.481 seconds +Domain Reload Profiling: 929ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (481ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.97 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: 3724. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.171000 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.142700 ms MarkObjects: 2.695300 ms DeleteObjects: 0.039500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.689 seconds +Refreshing native plugins compatible for Editor in 2.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.150 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (476ms) + LoadAssemblies (251ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (287ms) + TypeCache.Refresh (282ms) + TypeCache.ScanAssembly (271ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1150ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.32 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: 3727. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.493700 ms (FindLiveObjects: 0.253100 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.099700 ms DeleteObjects: 0.038100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.503 seconds +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 1004ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (230ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (501ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.32 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: 3730. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.204200 ms (FindLiveObjects: 0.178500 ms CreateObjectMapping: 0.071300 ms MarkObjects: 1.918000 ms DeleteObjects: 0.035400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.443 seconds +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.476 seconds +Domain Reload Profiling: 919ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.19 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: 3733. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.491900 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.085300 ms MarkObjects: 2.165300 ms DeleteObjects: 0.037500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.484 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.553 seconds +Domain Reload Profiling: 1037ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (553ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.34 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: 3736. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.211200 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.081700 ms MarkObjects: 1.862500 ms DeleteObjects: 0.036400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.466 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.507 seconds +Domain Reload Profiling: 974ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.09 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: 3739. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.346200 ms (FindLiveObjects: 0.173900 ms CreateObjectMapping: 0.068100 ms MarkObjects: 2.067600 ms DeleteObjects: 0.036000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.451 seconds +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.08 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: 3742. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.058900 ms (FindLiveObjects: 0.340300 ms CreateObjectMapping: 0.105500 ms MarkObjects: 2.575400 ms DeleteObjects: 0.036400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.763 seconds +Refreshing native plugins compatible for Editor in 2.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.828 seconds +Domain Reload Profiling: 1591ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (298ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (295ms) + TypeCache.ScanAssembly (285ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (828ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.02 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: 3745. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.242600 ms (FindLiveObjects: 0.239500 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.880600 ms DeleteObjects: 0.037000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.761 seconds +Refreshing native plugins compatible for Editor in 2.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.863 seconds +Domain Reload Profiling: 1625ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (301ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (294ms) + TypeCache.ScanAssembly (284ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (864ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 2.43 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: 3748. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.841900 ms (FindLiveObjects: 0.282900 ms CreateObjectMapping: 0.081800 ms MarkObjects: 2.434400 ms DeleteObjects: 0.041700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.466 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.524 seconds +Domain Reload Profiling: 990ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (315ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (182ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (525ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.27 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: 3751. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.424600 ms (FindLiveObjects: 0.194300 ms CreateObjectMapping: 0.108900 ms MarkObjects: 2.074000 ms DeleteObjects: 0.046400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.478 seconds +Refreshing native plugins compatible for Editor in 2.08 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.468 seconds +Domain Reload Profiling: 947ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (192ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (178ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (469ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.57 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: 3754. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.414100 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.021400 ms DeleteObjects: 0.044200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.483 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.552 seconds +Domain Reload Profiling: 1035ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (189ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (552ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (285ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 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: 3757. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.470300 ms (FindLiveObjects: 0.311800 ms CreateObjectMapping: 0.101700 ms MarkObjects: 2.019900 ms DeleteObjects: 0.036100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.703 seconds +Refreshing native plugins compatible for Editor in 4.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.858 seconds +Domain Reload Profiling: 1561ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (486ms) + LoadAssemblies (265ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (293ms) + TypeCache.Refresh (286ms) + TypeCache.ScanAssembly (276ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (859ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.28 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: 3760. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.609400 ms (FindLiveObjects: 0.350700 ms CreateObjectMapping: 0.113200 ms MarkObjects: 3.099500 ms DeleteObjects: 0.045000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.564 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.599 seconds +Domain Reload Profiling: 1163ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (252ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (600ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (303ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.62 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: 3763. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.460300 ms (FindLiveObjects: 0.221900 ms CreateObjectMapping: 0.083000 ms MarkObjects: 2.114500 ms DeleteObjects: 0.039500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.690 seconds +Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.790 seconds +Domain Reload Profiling: 1480ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (271ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (267ms) + TypeCache.Refresh (259ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (790ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 1.78 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: 3766. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.265600 ms (FindLiveObjects: 0.300700 ms CreateObjectMapping: 0.088700 ms MarkObjects: 2.837300 ms DeleteObjects: 0.038100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.690 seconds +Refreshing native plugins compatible for Editor in 2.70 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.637 seconds +Domain Reload Profiling: 1327ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (467ms) + LoadAssemblies (259ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (269ms) + TypeCache.ScanAssembly (258ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (638ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (271ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 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: 3769. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.513300 ms (FindLiveObjects: 0.277600 ms CreateObjectMapping: 0.126100 ms MarkObjects: 2.070400 ms DeleteObjects: 0.038400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.452 seconds +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.507 seconds +Domain Reload Profiling: 959ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (507ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (261ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.38 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: 3772. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.676300 ms (FindLiveObjects: 0.220300 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.330100 ms DeleteObjects: 0.040700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.555 seconds +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.600 seconds +Domain Reload Profiling: 1155ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (235ms) + TypeCache.Refresh (228ms) + TypeCache.ScanAssembly (218ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (4ms) + FinalizeReload (600ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (280ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.67 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: 3775. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.752200 ms (FindLiveObjects: 0.204800 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.426000 ms DeleteObjects: 0.040600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.439 seconds +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.447 seconds +Domain Reload Profiling: 886ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (448ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.07 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: 3778. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.703600 ms (FindLiveObjects: 0.394100 ms CreateObjectMapping: 0.108500 ms MarkObjects: 2.152200 ms DeleteObjects: 0.047700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.595 seconds +Refreshing native plugins compatible for Editor in 5.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.635 seconds +Domain Reload Profiling: 1230ms + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (411ms) + LoadAssemblies (210ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (257ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (242ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (636ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 1.67 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: 3781. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.535600 ms (FindLiveObjects: 0.258700 ms CreateObjectMapping: 0.092300 ms MarkObjects: 3.096100 ms DeleteObjects: 0.085800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.553 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.563 seconds +Domain Reload Profiling: 1116ms + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (209ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (213ms) + TypeCache.ScanAssembly (204ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (563ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.40 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: 3784. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.251200 ms (FindLiveObjects: 0.319400 ms CreateObjectMapping: 0.109700 ms MarkObjects: 2.778900 ms DeleteObjects: 0.042200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.519 seconds +Refreshing native plugins compatible for Editor in 2.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.536 seconds +Domain Reload Profiling: 1056ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (190ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (266ms) - TypeCache.Refresh (258ms) - TypeCache.ScanAssembly (245ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (4ms) - FinalizeReload (680ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (537ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (248ms) + SetupLoadedEditorAssemblies (264ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (45ms) - ProcessInitializeOnLoadAttributes (176ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (188ms) ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (4ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 2.928100 ms (FindLiveObjects: 0.269600 ms CreateObjectMapping: 0.081100 ms MarkObjects: 2.507400 ms DeleteObjects: 0.067200 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3787. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.040500 ms (FindLiveObjects: 0.209000 ms CreateObjectMapping: 0.078700 ms MarkObjects: 2.713500 ms DeleteObjects: 0.038400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3205,6 +8028,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3212,53 +8036,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.606 seconds -Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +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.682 seconds +Refreshing native plugins compatible for Editor in 8.39 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.288 seconds -Domain Reload Profiling: 1894ms - BeginReloadAssembly (128ms) +- Finished resetting the current domain, in 0.773 seconds +Domain Reload Profiling: 1455ms + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (29ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (403ms) - LoadAssemblies (236ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (452ms) + LoadAssemblies (247ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (226ms) - TypeCache.Refresh (220ms) - TypeCache.ScanAssembly (212ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1289ms) + AnalyzeDomain (276ms) + TypeCache.Refresh (268ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (774ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (580ms) + SetupLoadedEditorAssemblies (352ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (10ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (416ms) - ProcessInitializeOnLoadMethodAttributes (41ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3769. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 4.992800 ms (FindLiveObjects: 0.273800 ms CreateObjectMapping: 0.126000 ms MarkObjects: 4.404600 ms DeleteObjects: 0.183800 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3790. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.334300 ms (FindLiveObjects: 0.251300 ms CreateObjectMapping: 0.089400 ms MarkObjects: 2.953200 ms DeleteObjects: 0.039400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3269,6 +8092,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3276,53 +8100,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.179 seconds -Refreshing native plugins compatible for Editor in 6.34 ms, found 3 plugins. +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.630 seconds +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.147 seconds -Domain Reload Profiling: 2324ms - BeginReloadAssembly (209ms) +- Finished resetting the current domain, in 0.545 seconds +Domain Reload Profiling: 1174ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - RebuildCommonClasses (58ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (45ms) - LoadAllAssembliesAndSetupDomain (847ms) - LoadAssemblies (486ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (252ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (473ms) - TypeCache.Refresh (461ms) - TypeCache.ScanAssembly (399ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (9ms) - FinalizeReload (1148ms) + AnalyzeDomain (231ms) + TypeCache.Refresh (228ms) + TypeCache.ScanAssembly (219ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (545ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (444ms) + SetupLoadedEditorAssemblies (290ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (313ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 3.07 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 4.011500 ms (FindLiveObjects: 0.335700 ms CreateObjectMapping: 0.115200 ms MarkObjects: 3.497000 ms DeleteObjects: 0.061600 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3793. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.655700 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.165900 ms DeleteObjects: 0.036600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3333,6 +8156,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3340,53 +8164,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.612 seconds -Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins. +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.513 seconds +Refreshing native plugins compatible for Editor in 3.88 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.266 seconds -Domain Reload Profiling: 1878ms - BeginReloadAssembly (125ms) +- Finished resetting the current domain, in 0.646 seconds +Domain Reload Profiling: 1159ms + BeginReloadAssembly (119ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (421ms) - LoadAssemblies (226ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (187ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (248ms) - TypeCache.Refresh (244ms) - TypeCache.ScanAssembly (233ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (1267ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (193ms) + TypeCache.ScanAssembly (185ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (7ms) + FinalizeReload (646ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (609ms) + SetupLoadedEditorAssemblies (335ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (103ms) - ProcessInitializeOnLoadAttributes (428ms) - ProcessInitializeOnLoadMethodAttributes (53ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (1ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Refreshing native plugins compatible for Editor in 4.81 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 5.711700 ms (FindLiveObjects: 0.989700 ms CreateObjectMapping: 0.568300 ms MarkObjects: 4.054300 ms DeleteObjects: 0.097000 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3796. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.694400 ms (FindLiveObjects: 0.251100 ms CreateObjectMapping: 0.258400 ms MarkObjects: 2.145900 ms DeleteObjects: 0.038100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3397,6 +8220,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3404,53 +8228,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 1.182 seconds -Refreshing native plugins compatible for Editor in 4.12 ms, found 3 plugins. +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.481 seconds +Refreshing native plugins compatible for Editor in 2.76 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.068 seconds -Domain Reload Profiling: 2248ms - BeginReloadAssembly (209ms) +- Finished resetting the current domain, in 0.497 seconds +Domain Reload Profiling: 978ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (48ms) - RebuildNativeTypeToScriptingClass (17ms) - initialDomainReloadingComplete (41ms) - LoadAllAssembliesAndSetupDomain (865ms) - LoadAssemblies (500ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (174ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (474ms) - TypeCache.Refresh (462ms) - TypeCache.ScanAssembly (449ms) - ScanForSourceGeneratedMonoScriptInfo (4ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1069ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (497ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (455ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (327ms) - ProcessInitializeOnLoadMethodAttributes (27ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.68 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 2.686500 ms (FindLiveObjects: 0.215000 ms CreateObjectMapping: 0.077100 ms MarkObjects: 2.331000 ms DeleteObjects: 0.062400 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3799. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.697000 ms (FindLiveObjects: 0.210900 ms CreateObjectMapping: 0.087100 ms MarkObjects: 2.354600 ms DeleteObjects: 0.043500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3461,6 +8284,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -3468,53 +8292,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.630 seconds -Refreshing native plugins compatible for Editor in 2.45 ms, found 3 plugins. +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.753 seconds +Refreshing native plugins compatible for Editor in 2.37 ms, found 3 plugins. Native extension for WindowsStandalone target not found -Native extension for WebGL target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.257 seconds -Domain Reload Profiling: 1885ms - BeginReloadAssembly (129ms) +- Finished resetting the current domain, in 0.865 seconds +Domain Reload Profiling: 1618ms + BeginReloadAssembly (172ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (424ms) - LoadAssemblies (235ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (496ms) + LoadAssemblies (277ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (242ms) - TypeCache.Refresh (237ms) - TypeCache.ScanAssembly (227ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1257ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (291ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (865ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (559ms) + SetupLoadedEditorAssemblies (402ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (9ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (96ms) - ProcessInitializeOnLoadAttributes (394ms) - ProcessInitializeOnLoadMethodAttributes (34ms) - AfterProcessingInitializeOnLoad (10ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (294ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Refreshing native plugins compatible for Editor in 4.17 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3096 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3781. -Memory consumption went from 123.5 MB to 123.5 MB. -Total: 4.932600 ms (FindLiveObjects: 0.698800 ms CreateObjectMapping: 0.190800 ms MarkObjects: 3.959400 ms DeleteObjects: 0.081600 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3802. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.226600 ms (FindLiveObjects: 0.288600 ms CreateObjectMapping: 0.114100 ms MarkObjects: 2.772900 ms DeleteObjects: 0.049800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -3525,6 +8348,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/LMC/Logs/AssetImportWorker1.log b/LMC/Logs/AssetImportWorker1.log index a4559975..5177c351 100644 --- a/LMC/Logs/AssetImportWorker1.log +++ b/LMC/Logs/AssetImportWorker1.log @@ -15,9 +15,15 @@ C:/Users/Lenovo/LittleManComputer/LMC -logFile Logs/AssetImportWorker1.log -srvPort +<<<<<<< HEAD 55899 Successfully changed project path to: C:/Users/Lenovo/LittleManComputer/LMC C:/Users/Lenovo/LittleManComputer/LMC +======= +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 [UnityMemory] Configuration Parameters - Can be set up in boot.config "memorysetup-bucket-allocator-granularity=16" "memorysetup-bucket-allocator-bucket-count=8" @@ -49,11 +55,19 @@ C:/Users/Lenovo/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" +<<<<<<< HEAD Player connection [2748] Host "[IP] 192.168.86.25 [Port] 0 [Flags] 2 [Guid] 2808656292 [EditorId] 2808656292 [Version] 1048832 [Id] WindowsEditor(7,thanhs) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... Player connection [2748] Host "[IP] 192.168.86.25 [Port] 0 [Flags] 2 [Guid] 2808656292 [EditorId] 2808656292 [Version] 1048832 [Id] WindowsEditor(7,thanhs) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... Refreshing native plugins compatible for Editor in 6.29 ms, found 3 plugins. +======= +Player connection [30940] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3728845930 [EditorId] 3728845930 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [30940] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3728845930 [EditorId] 3728845930 [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 18.12 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -66,6 +80,7 @@ Direct3D: VRAM: 8033 MB Driver: 31.0.101.4255 Initialize mono +<<<<<<< HEAD Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' @@ -76,17 +91,35 @@ Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.0f1/E Register platform support module: C:/Program Files/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Registered in 0.004610 seconds. - Loaded All Assemblies, in 0.322 seconds +======= +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 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:56484 +Begin MonoManager ReloadAssembly +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 +Registered in 0.006184 seconds. +- Loaded All Assemblies, in 0.348 seconds +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly +<<<<<<< HEAD - Finished resetting the current domain, in 0.271 seconds Domain Reload Profiling: 593ms BeginReloadAssembly (89ms) +======= +- Finished resetting the current domain, in 0.205 seconds +Domain Reload Profiling: 553ms + BeginReloadAssembly (152ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) +<<<<<<< HEAD RebuildCommonClasses (31ms) RebuildNativeTypeToScriptingClass (9ms) initialDomainReloadingComplete (54ms) @@ -99,16 +132,39 @@ Domain Reload Profiling: 593ms ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) FinalizeReload (271ms) +======= + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (114ms) + TypeCache.Refresh (114ms) + TypeCache.ScanAssembly (96ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (206ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (213ms) LogAssemblyErrors (0ms) +<<<<<<< HEAD InitializePlatformSupportModulesInManaged (9ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (2ms) ProcessInitializeOnLoadAttributes (148ms) ProcessInitializeOnLoadMethodAttributes (49ms) +======= + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (103ms) + ProcessInitializeOnLoadMethodAttributes (39ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -116,13 +172,21 @@ Domain Reload Profiling: 593ms ======================================================================== Worker process is ready to serve import requests Begin MonoManager ReloadAssembly +<<<<<<< HEAD Symbol file LoadedFromMemory doesn't match image C:\Users\Lenovo\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 C:\Users\Lenovo\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll - Loaded All Assemblies, in 0.960 seconds Refreshing native plugins compatible for Editor in 2.98 ms, found 3 plugins. +======= +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 1.161 seconds +Refreshing native plugins compatible for Editor in 2.77 ms, found 3 plugins. +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 Native extension for WindowsStandalone target not found Native extension for WebGL target not found Mono: successfully reloaded assembly +<<<<<<< HEAD - Finished resetting the current domain, in 0.637 seconds Domain Reload Profiling: 1597ms BeginReloadAssembly (156ms) @@ -214,10 +278,16 @@ Mono: successfully reloaded assembly - Finished resetting the current domain, in 0.801 seconds Domain Reload Profiling: 1543ms BeginReloadAssembly (197ms) +======= +- Finished resetting the current domain, in 0.483 seconds +Domain Reload Profiling: 1645ms + BeginReloadAssembly (168ms) +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) +<<<<<<< HEAD CreateAndSetChildDomain (50ms) RebuildCommonClasses (33ms) RebuildNativeTypeToScriptingClass (10ms) @@ -253,6 +323,43 @@ Memory consumption went from 121.8 MB to 121.8 MB. Total: 4.265400 ms (FindLiveObjects: 0.416600 ms CreateObjectMapping: 0.230600 ms MarkObjects: 3.541200 ms DeleteObjects: 0.074800 ms) Prepare: number of updated asset objects reloaded= 0 +======= + CreateAndSetChildDomain (21ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (922ms) + LoadAssemblies (735ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (4ms) + FinalizeReload (483ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 120.9 MB. +Total: 10.183200 ms (FindLiveObjects: 0.350900 ms CreateObjectMapping: 0.117100 ms MarkObjects: 9.548500 ms DeleteObjects: 0.165300 ms) + +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> @@ -265,6 +372,7 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +<<<<<<< HEAD ======================================================================== Received Import Request. Time since last request: 591.010760 seconds. @@ -3473,3 +3581,325 @@ AssetImportParameters requested are different than current active one (requested custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======= +======================================================================== +Received Import Request. + Time since last request: 559123.918889 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf + artifactKey: Guid(c9f6d0e7bc8541498c9a4799ba184ede) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf using Guid(c9f6d0e7bc8541498c9a4799ba184ede) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a0e7097ae39e329a04c1dfa5b5418cd2') in 0.149543 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader + artifactKey: Guid(a02a7d8c237544f1962732b55a9aebf1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader using Guid(a02a7d8c237544f1962732b55a9aebf1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1691af8d46d2b87f84bf87f3340d8280') in 0.032799 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000076 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Logo Scene.mat + artifactKey: Guid(c719e38f25a9480abd2480ab621a2949) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Logo Scene.mat using Guid(c719e38f25a9480abd2480ab621a2949) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '87eabcbcf92cbd67cd38c1ed8b92f525') in 0.038016 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne.png + artifactKey: Guid(dffef66376be4fa480fb02b19edbe903) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne.png using Guid(dffef66376be4fa480fb02b19edbe903) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dc2a8b1e7b26ecc2f009e11ce0f2294d') in 0.015771 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000098 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs + artifactKey: Guid(8ef7be1c625941f7ba8ed7cc71718c0d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs using Guid(8ef7be1c625941f7ba8ed7cc71718c0d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '76103ddbbca90c0e0ca0be49632966c6') in 0.018595 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader + artifactKey: Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader using Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ce6681fbd47efa2a33beb949a8fa5163') in 0.023961 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000081 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Crate - Surface Shader Scene.mat + artifactKey: Guid(e6b9b44320f4448d9d5e0ee634259966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Crate - Surface Shader Scene.mat using Guid(e6b9b44320f4448d9d5e0ee634259966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '98883ab401587dbd3a24b0210f1ed80e') in 0.043694 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/Scenes/SampleScene.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'cf829d3bb7b58245cef858725cbbb31d') in 0.014734 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000096 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs + artifactKey: Guid(f970ea55f9f84bf79b05dab180b8c125) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs using Guid(f970ea55f9f84bf79b05dab180b8c125) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f7034af57c478d1b44866268ea7016a4') in 0.017687 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs + artifactKey: Guid(9eff140b25d64601aabc6ba32245d099) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs using Guid(9eff140b25d64601aabc6ba32245d099) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c8a5dc8374dc396e065943d8d32045b9') in 0.017016 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt + artifactKey: Guid(381dcb09d5029d14897e55f98031fca5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt using Guid(381dcb09d5029d14897e55f98031fca5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a69091ebf74cd842ee5373b5240c9cee') in 0.024271 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc + artifactKey: Guid(d930090c0cd643c7b55f19a38538c162) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc using Guid(d930090c0cd643c7b55f19a38538c162) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ab30e727bd57d8171324bdca15b1d8de') in 0.021565 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000234 seconds. + path: Assets/TextMesh Pro/Fonts/LiberationSans.ttf + artifactKey: Guid(e3265ab4bf004d28a9537516768c1c75) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Fonts/LiberationSans.ttf using Guid(e3265ab4bf004d28a9537516768c1c75) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f7e93fdd9635e18010138c51c235f277') in 0.020736 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Resources/TMP Settings.asset + artifactKey: Guid(3f5b5dff67a942289a9defa416b206f3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/TMP Settings.asset using Guid(3f5b5dff67a942289a9defa416b206f3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '860e34fecb0c7f46ec74b99a30ecbaeb') in 0.064289 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 14 +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8ec333750cf883fdf671e08c462fb9e2') in 0.017201 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf + artifactKey: Guid(4beb055f07aaff244873dec698d0363e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf using Guid(4beb055f07aaff244873dec698d0363e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '575eed5aece161410ba2d8546e785738') in 0.027252 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc + artifactKey: Guid(3997e2241185407d80309a82f9148466) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc using Guid(3997e2241185407d80309a82f9148466) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9775e68eef60786d2dda0c3d7900fe83') in 0.022699 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000102 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat + artifactKey: Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat using Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '062f57ac579d48826e7c2669847227de') in 0.034657 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset + artifactKey: Guid(479a66fa4b094512a62b0a8e553ad95a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset using Guid(479a66fa4b094512a62b0a8e553ad95a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '44ab65370c3d77f1875efcb746237ea8') in 0.025995 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000054 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs + artifactKey: Guid(83680ab1a69f4102ac67d1459fe76e1f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs using Guid(83680ab1a69f4102ac67d1459fe76e1f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3ef66b3e43f9e42426d62ab8687165c8') in 0.016840 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat + artifactKey: Guid(f2dcf029949142e28b974630369c8b4e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat using Guid(f2dcf029949142e28b974630369c8b4e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'e24adb97c61b23fbb91dd2ab8de893f7') in 0.026430 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs + artifactKey: Guid(6f2c5b59b6874405865e2616e4ec276a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs using Guid(6f2c5b59b6874405865e2616e4ec276a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '64e8b33f0346f865d18866f2d24109ee') in 0.022555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg + artifactKey: Guid(85ac55597b97403c82fc6601a93cf241) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg using Guid(85ac55597b97403c82fc6601a93cf241) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ea8881e5f59f3d0adc5d6b604de7c2ce') in 0.017078 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000051 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset + artifactKey: Guid(4c86a3366cd840348ebe8dc438570ee4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset using Guid(4c86a3366cd840348ebe8dc438570ee4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c35cc274416cde9caa28e3a6fb3b0ac0') in 0.025187 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset + artifactKey: Guid(14aa93acbb234d16aaef0e8b46814db6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset using Guid(14aa93acbb234d16aaef0e8b46814db6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd323b6dc51d5eaf360698a8de23b2d30') in 0.036039 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg + artifactKey: Guid(283f897e4925411ebbaa758b4cb13fc2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg using Guid(283f897e4925411ebbaa758b4cb13fc2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '968e1761dea3c6ff3dfb47210c612609') in 0.017476 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset + artifactKey: Guid(5cf8ae092ca54931b443bec5148f3c59) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset using Guid(5cf8ae092ca54931b443bec5148f3c59) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5a4bb38029e37d4246ca2bba25a316a5') in 0.022659 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg + artifactKey: Guid(03d0538de6e24c0f819bfc9ce084dfa9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg using Guid(03d0538de6e24c0f819bfc9ce084dfa9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b1ecf531ad04935e9e278fefe4353d4c') in 0.015170 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset + artifactKey: Guid(125cb55b44b24c4393181402bc6200e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset using Guid(125cb55b44b24c4393181402bc6200e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bfda40ab20ace18768da167c6d42f621') in 0.030856 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg + artifactKey: Guid(2ce5c55e85304b819a1826ecbc839aa5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg using Guid(2ce5c55e85304b819a1826ecbc839aa5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '765274d93e147e200556df0c38b82c18') in 0.013885 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat + artifactKey: Guid(a00013af81304728b2be1f4309ee2433) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat using Guid(a00013af81304728b2be1f4309ee2433) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '66f0c5c710928c862ae974623474a9a6') in 0.027071 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF.shader + artifactKey: Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF.shader using Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '39d2ac25e63a989122c2b60ed2c2f606') in 0.018590 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/01- Single Line TextMesh Pro.unity + artifactKey: Guid(2ac8cf212df6445e8aebbe3cb832e993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/01- Single Line TextMesh Pro.unity using Guid(2ac8cf212df6445e8aebbe3cb832e993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd7e70971585abb49d06ea5aeda82a217') in 0.017426 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold - OFL.txt + artifactKey: Guid(d2cf87a8a7a94aa8b80dff1c807c1178) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold - OFL.txt using Guid(d2cf87a8a7a94aa8b80dff1c807c1178) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '440ba77067ea85f247b1f6f0d01fe7dd') in 0.020364 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs + artifactKey: Guid(91b8ba3d52e041fab2d0e0f169855539) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs using Guid(91b8ba3d52e041fab2d0e0f169855539) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ca8d09c940b9746022dbc7c75432f0ff') in 0.015878 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 diff --git a/LMC/Logs/AssetImportWorker2.log b/LMC/Logs/AssetImportWorker2.log new file mode 100644 index 00000000..8be0039f --- /dev/null +++ b/LMC/Logs/AssetImportWorker2.log @@ -0,0 +1,497 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker2 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker2.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [33752] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 16573003 [EditorId] 16573003 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [33752] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 16573003 [EditorId] 16573003 [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 18.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +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/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +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 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:56992 +Begin MonoManager ReloadAssembly +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 +Registered in 0.005351 seconds. +- Loaded All Assemblies, in 0.351 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.198 seconds +Domain Reload Profiling: 549ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (120ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (117ms) + TypeCache.Refresh (117ms) + TypeCache.ScanAssembly (96ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (1ms) + FinalizeReload (199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (106ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +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 1.159 seconds +Refreshing native plugins compatible for Editor in 4.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.491 seconds +Domain Reload Profiling: 1649ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (730ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (294ms) + TypeCache.Refresh (278ms) + TypeCache.ScanAssembly (263ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (3ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 120.9 MB. +Total: 5.654500 ms (FindLiveObjects: 0.354000 ms CreateObjectMapping: 0.127000 ms MarkObjects: 4.967000 ms DeleteObjects: 0.204400 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 Import Request. + Time since last request: 559123.914375 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Anton OFL.txt + artifactKey: Guid(73a79399807f4e8388c2cbb5494681ca) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Anton OFL.txt using Guid(73a79399807f4e8388c2cbb5494681ca) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a5059cc5377857524c5fd9c62a8a6a3') in 0.090806 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/Textures/Texture.jpg + artifactKey: Guid(34f6a94ffd906414baab13a5f3d16a2d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/Texture.jpg using Guid(34f6a94ffd906414baab13a5f3d16a2d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '68deb34b55667d2195c546dc58e6ac45') in 0.083672 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/Black.mat + artifactKey: Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Black.mat using Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a7975210cd5d9455b54021e33918a7d') in 0.045178 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs + artifactKey: Guid(ac1eb05af6d391b4eb0f4c070a99f1d0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs using Guid(ac1eb05af6d391b4eb0f4c070a99f1d0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c13ad5928850da95b4ba5c3d3e8a38ba') in 0.016680 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000448 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/Benchmark (Floating Text).unity + artifactKey: Guid(16177da2e3254cee91944756d5f8ddd3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/Benchmark (Floating Text).unity using Guid(16177da2e3254cee91944756d5f8ddd3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '62e66bcc04f2a9f5d827bae1bb20a074') in 0.018417 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000065 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/12 - Link Example.unity + artifactKey: Guid(9747140c28254be2adc582210dfb89b8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/12 - Link Example.unity using Guid(9747140c28254be2adc582210dfb89b8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8e4e5d901e9047642e344eeb772e22b4') in 0.014150 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Surface Shader Scene.mat + artifactKey: Guid(aadd5a709a48466c887296bb5b1b8110) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Surface Shader Scene.mat using Guid(aadd5a709a48466c887296bb5b1b8110) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0b2a2ac26d9a8594fddb1b4ddd72331d') in 0.026838 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/Segmental.ttf + artifactKey: Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Segmental.ttf using Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dfe55e125e618c34734a2923e2b860b4') in 0.031376 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/22 - Basic Scripting Example.unity + artifactKey: Guid(6250f98e58fe4abbaada5d84b7ca846d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/22 - Basic Scripting Example.unity using Guid(6250f98e58fe4abbaada5d84b7ca846d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1e35024f090a9c65edcfa6f134632215') in 0.016816 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf + artifactKey: Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf using Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '60ee9b5125afe561984b457a1cf9b6a9') in 0.016387 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Sprite.shader + artifactKey: Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Sprite.shader using Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6696b6814e0c36e1b5a2ab3b1c7cda12') in 0.022523 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/02 - Multi-line TextMesh Pro.unity + artifactKey: Guid(251716609f634449bfe8ce75c0ed78fe) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/02 - Multi-line TextMesh Pro.unity using Guid(251716609f634449bfe8ce75c0ed78fe) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '67d3140ad4969f487d3ba33f281863af') in 0.015607 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs + artifactKey: Guid(2d687537154440a3913a9a3c7977978c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs using Guid(2d687537154440a3913a9a3c7977978c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'efc7ff7f5ae3e6aec00f0cc865821729') in 0.018264 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000310 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader + artifactKey: Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader using Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ab8867f0fdc025d23afc6f341822de0f') in 0.025981 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader + artifactKey: Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader using Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8cb915df5a71ba65195d585e1ed718a3') in 0.019218 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000068 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/24 - Surface Shader Example.unity + artifactKey: Guid(8c4969fd8ba94a68b07cf11f3e7a5137) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/24 - Surface Shader Example.unity using Guid(8c4969fd8ba94a68b07cf11f3e7a5137) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bf42732f6739f6da2fb440badaed87e9') in 0.018117 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/11 - The Style Tag.unity + artifactKey: Guid(84ed36ad77dd4956b2ffe3769f759879) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/11 - The Style Tag.unity using Guid(84ed36ad77dd4956b2ffe3769f759879) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0811178e0c4eb0829a153369c2a3986e') in 0.013555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf + artifactKey: Guid(997a43b767814dd0a7642ec9b78cba41) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf using Guid(997a43b767814dd0a7642ec9b78cba41) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '04e9077c3272cd5e95bf6a02c6e248ff') in 0.029272 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader + artifactKey: Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader using Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'de8273f66de80c4da2a924aef610d326') in 0.026640 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/basket.fbx + artifactKey: Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/basket.fbx using Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4727f267849fafe09c15cec37ebd4f6f') in 0.067292 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 17 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs + artifactKey: Guid(e4e0d9ccee5f4950be8979268c9014e0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs using Guid(e4e0d9ccee5f4950be8979268c9014e0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '450b59847324aefc3cf5faf263ebc4e1') in 0.017843 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs + artifactKey: Guid(21256c5b62f346f18640dad779911e20) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs using Guid(21256c5b62f346f18640dad779911e20) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '667738199a8e95160df75d614f6903db') in 0.016669 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000062 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg + artifactKey: Guid(f88677df267a41d6be1e7a6133e7d227) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg using Guid(f88677df267a41d6be1e7a6133e7d227) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ddb2c9268ed7c54a4143fe999425c704') in 0.013291 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs + artifactKey: Guid(2ed57967c52645d390a89dcf8f61ba73) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs using Guid(2ed57967c52645d390a89dcf8f61ba73) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c3529bbc6ba310ca06ab5e4cec23004f') in 0.018765 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000081 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat + artifactKey: Guid(8b29aaa3eec7468097ff07adfcf29ac9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat using Guid(8b29aaa3eec7468097ff07adfcf29ac9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '01e3debc2c6b4e2b8a5b7d82f339aa46') in 0.038444 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs + artifactKey: Guid(a4d4c76e63944cba8c7d00f56334b98c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs using Guid(a4d4c76e63944cba8c7d00f56334b98c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9736229a835a2f137658e192516ed5f7') in 0.017038 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat + artifactKey: Guid(79459efec17a4d00a321bdcc27bbc385) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat using Guid(79459efec17a4d00a321bdcc27bbc385) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '18fb2192ade5bcbb06d19afa241fcc2b') in 0.026446 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg + artifactKey: Guid(602cb87b6a29443b8636370ea0751574) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg using Guid(602cb87b6a29443b8636370ea0751574) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f28828c7be76f03f40e8fda8b997f6d8') in 0.027451 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset + artifactKey: Guid(dc36b3fdc14f47ebb36fd484a67e268a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset using Guid(dc36b3fdc14f47ebb36fd484a67e268a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c9ca223bbdb5b60f6df844e8e11c44b2') in 0.056357 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset + artifactKey: Guid(c41005c129ba4d66911b75229fd70b45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset using Guid(c41005c129ba4d66911b75229fd70b45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b87478f21c08fbcb1872fa4b50393184') in 0.021074 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset + artifactKey: Guid(8a89fa14b10d46a99122fd4f73fca9a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset using Guid(8a89fa14b10d46a99122fd4f73fca9a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dcf56dc59b8f6550ce2bbb5cfc1b1685') in 0.027054 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs + artifactKey: Guid(53d91f98a2664f5cb9af11de72ac54ec) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs using Guid(53d91f98a2664f5cb9af11de72ac54ec) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c1268b1b988ec51b5022e8a0cc714afe') in 0.017470 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat + artifactKey: Guid(b246c4190f4e46ec9352fe15a7b09ce0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat using Guid(b246c4190f4e46ec9352fe15a7b09ce0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f1fb2a1273d01c0909a1866c8b14f9d5') in 0.032485 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs + artifactKey: Guid(d412675cfb3441efa3bf8dcd9b7624dc) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs using Guid(d412675cfb3441efa3bf8dcd9b7624dc) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '04d4c1f36f5e261ece94821c5c188247') in 0.017201 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs + artifactKey: Guid(52ec835d14bd486f900952b77698b7eb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs using Guid(52ec835d14bd486f900952b77698b7eb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '98fda35c4784855e8ac8231bd920045f') in 0.016127 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error +AssetImportWorkerClient::OnTransportError - code=2 error=End of file +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker3.log b/LMC/Logs/AssetImportWorker3.log new file mode 100644 index 00000000..725e0f30 --- /dev/null +++ b/LMC/Logs/AssetImportWorker3.log @@ -0,0 +1,479 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker3 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker3.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [40668] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1546222997 [EditorId] 1546222997 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [40668] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1546222997 [EditorId] 1546222997 [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 19.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +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/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +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 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:56332 +Begin MonoManager ReloadAssembly +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 +Registered in 0.003866 seconds. +- Loaded All Assemblies, in 0.340 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.200 seconds +Domain Reload Profiling: 541ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (115ms) + TypeCache.Refresh (114ms) + TypeCache.ScanAssembly (96ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (105ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +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 1.166 seconds +Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.475 seconds +Domain Reload Profiling: 1642ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (920ms) + LoadAssemblies (736ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (5ms) + FinalizeReload (476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.300500 ms (FindLiveObjects: 0.383700 ms CreateObjectMapping: 0.112500 ms MarkObjects: 3.605900 ms DeleteObjects: 0.196100 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 Import Request. + Time since last request: 559123.910962 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Small Crate_diffuse.mat + artifactKey: Guid(22262639920f43d6be32430e4e58350d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Small Crate_diffuse.mat using Guid(22262639920f43d6be32430e4e58350d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'e222f1a6ec21300a6bdb3e5fa80ab504') in 0.174951 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/robot.fbx + artifactKey: Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/robot.fbx using Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1a113f32226d379f8af8f2d56ff373b6') in 0.105644 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 113 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/13 - Soft Hyphenation.unity + artifactKey: Guid(875684baf40f4d008ce806d03e2a81b2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/13 - Soft Hyphenation.unity using Guid(875684baf40f4d008ce806d03e2a81b2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8e410599839909df5a309a1253e7516f') in 0.017106 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/Fonts/Segmental SDF.asset + artifactKey: Guid(122949bc315ef7d48aef6221c5b75666) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Fonts/Segmental SDF.asset using Guid(122949bc315ef7d48aef6221c5b75666) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ba0b2346da1a1c45e267fb141e07e5af') in 0.065231 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs + artifactKey: Guid(e8538afcddc14efbb5d9e94b7ae50197) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs using Guid(e8538afcddc14efbb5d9e94b7ae50197) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '67a04b68b69179ef3e1bd87d2b1fe764') in 0.018757 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/08 - Improved Text Alignment.unity + artifactKey: Guid(5fe2257128d9401fad0790f581dc8a6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/08 - Improved Text Alignment.unity using Guid(5fe2257128d9401fad0790f581dc8a6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a852a4a511ef0ffd78dfcc327f6f23cc') in 0.014693 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader + artifactKey: Guid(bc1ede39bf3643ee8e493720e4259791) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader using Guid(bc1ede39bf3643ee8e493720e4259791) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '78d01878e0cd5039f8c1981b7a1a7f27') in 0.024424 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/15 - Inline Graphics & Sprites.unity + artifactKey: Guid(e76e6c0f81964cbda3fe0b7d26ed8060) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/15 - Inline Graphics & Sprites.unity using Guid(e76e6c0f81964cbda3fe0b7d26ed8060) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '17ecee77c313f4a2b218097c6c681a73') in 0.018785 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/Textures/Calculadora_Color.png + artifactKey: Guid(b84e322f5e146d64f86a72eae6bdadbb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/Calculadora_Color.png using Guid(b84e322f5e146d64f86a72eae6bdadbb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ed95e869a1a46f24e8af8dfe3d75307e') in 0.052497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.001731 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/18 - ScrollRect & Masking & Layout.unity + artifactKey: Guid(03f9d74cec8e4b94a29d2dfd177c821b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/18 - ScrollRect & Masking & Layout.unity using Guid(03f9d74cec8e4b94a29d2dfd177c821b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4bc27b11a285d5bea94a2999ede90d2b') in 0.013786 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/25 - Sunny Days Example.unity + artifactKey: Guid(f9b4c22e15cff344ba9fc6542a58dd07) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/25 - Sunny Days Example.unity using Guid(f9b4c22e15cff344ba9fc6542a58dd07) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0f11adefe6e02984fbffd281c213da60') in 0.015434 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs + artifactKey: Guid(a73109742c8d47ac822895a473300c29) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs using Guid(a73109742c8d47ac822895a473300c29) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5febb8ab00020da137b9edd33baf52aa') in 0.016209 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/Materials/Handle_material.mat + artifactKey: Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Materials/Handle_material.mat using Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bd140911d077d872400482e3c3947e1d') in 0.033188 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000140 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/10 - Bullets & Numbered List Example.unity + artifactKey: Guid(c3f814e1d12c45568daf3dd9a86a0e61) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/10 - Bullets & Numbered List Example.unity using Guid(c3f814e1d12c45568daf3dd9a86a0e61) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '75fb037540b41a222ef45d03d02f472e') in 0.014667 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset + artifactKey: Guid(69a525efa7e6472eab268f6ea605f06e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset using Guid(69a525efa7e6472eab268f6ea605f06e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0fffe9d13753f1c56135dc68252af343') in 0.029895 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000080 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg + artifactKey: Guid(6eb184de103d4b3f812b38561065192f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg using Guid(6eb184de103d4b3f812b38561065192f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b6e72e50c352244f8c3fc48b02f64760') in 0.014793 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000209 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat + artifactKey: Guid(f629c6e43dba4bf38cb74d8860150664) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat using Guid(f629c6e43dba4bf38cb74d8860150664) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2c91eace45e78c9c4a6826ecf3d8a960') in 0.034602 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat + artifactKey: Guid(f4e195ac1e204eff960149d1cb34e18c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat using Guid(f4e195ac1e204eff960149d1cb34e18c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7e1c4ee5805936cda73b6ec0eb0436c9') in 0.033636 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs + artifactKey: Guid(a05dcd8be7ec4ccbb35c26219884aa37) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs using Guid(a05dcd8be7ec4ccbb35c26219884aa37) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6d07006f0666fd4eb6671e944f45440e') in 0.025504 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd + artifactKey: Guid(10c49fcd9c64421db7c0133e61e55f97) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd using Guid(10c49fcd9c64421db7c0133e61e55f97) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b016d417c7e35a9e75fffd4634f575cf') in 0.014356 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000059 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat + artifactKey: Guid(e6b276ec991f467aa14ef1f3cc665993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat using Guid(e6b276ec991f467aa14ef1f3cc665993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '526c5cf544f6b757e750790890d06fe0') in 0.033914 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs + artifactKey: Guid(790744c462254b7ba8038e6ed28b3db2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs using Guid(790744c462254b7ba8038e6ed28b3db2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ad13fcd05809b7c179f752c5f82a295d') in 0.014512 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd + artifactKey: Guid(2b5e9ae96c5644d8bae932f8b4ca68a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd using Guid(2b5e9ae96c5644d8bae932f8b4ca68a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6a9b38c0b00ef6f6541bf4a9f3c21bba') in 0.014899 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000049 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset + artifactKey: Guid(2e498d1c8094910479dc3e1b768306a4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset using Guid(2e498d1c8094910479dc3e1b768306a4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '45e0406e72675b08cfc4476559f1e432') in 0.028973 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd + artifactKey: Guid(bb8dfcd263ad4eb383a33d74a720be6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd using Guid(bb8dfcd263ad4eb383a33d74a720be6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd06db11441a9eb424012668a9b3702b8') in 0.013726 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000097 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd + artifactKey: Guid(7631f4eff8f74ed38eb3eb9db17134e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd using Guid(7631f4eff8f74ed38eb3eb9db17134e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7782ee2330835ea54731acd2c2273ee6') in 0.014497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg + artifactKey: Guid(17c350171f7a3ca479f830547c66d187) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg using Guid(17c350171f7a3ca479f830547c66d187) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '30c01a416a3f0c7221c12bab4094322b') in 0.025459 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png + artifactKey: Guid(c76d18757a194d618355f05f815cb0a1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png using Guid(c76d18757a194d618355f05f815cb0a1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '92695e8dc0596fc40a4d70af728e1ff3') in 0.016119 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000082 seconds. + path: Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt + artifactKey: Guid(6e59c59b81ab47f9b6ec5781fa725d2c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt using Guid(6e59c59b81ab47f9b6ec5781fa725d2c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '15c380d37728b2a73508d6cb69950d7a') in 0.014690 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/16 - Linked text overflow mode example.unity + artifactKey: Guid(9442cda25baa4a0bb544c4d095b00caa) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/16 - Linked text overflow mode example.unity using Guid(9442cda25baa4a0bb544c4d095b00caa) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '08ef54e125cb69f5c059b046b6c69d0a') in 0.013555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs + artifactKey: Guid(f7cfa58e417a46ea8889989684c2522e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs using Guid(f7cfa58e417a46ea8889989684c2522e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2ee56ac750b45379dac83851cd813d0c') in 0.017938 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/04 - Word Wrapping.unity + artifactKey: Guid(8f7137eacd7042d5b17ef0efe5e744f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/04 - Word Wrapping.unity using Guid(8f7137eacd7042d5b17ef0efe5e744f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5ada904bfaa914e3c4041d716f580775') in 0.017482 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs + artifactKey: Guid(24b0dc2d1d494adbbec1f4db26b4cf83) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs using Guid(24b0dc2d1d494adbbec1f4db26b4cf83) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '096c6055272514e114286ca9586f7b6f') in 0.018025 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error +AssetImportWorkerClient::OnTransportError - code=2 error=End of file +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker4.log b/LMC/Logs/AssetImportWorker4.log new file mode 100644 index 00000000..31625760 --- /dev/null +++ b/LMC/Logs/AssetImportWorker4.log @@ -0,0 +1,5194 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker4 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker4.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [36556] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2442853996 [EditorId] 2442853996 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [36556] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2442853996 [EditorId] 2442853996 [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 17.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +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/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +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 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:56332 +Begin MonoManager ReloadAssembly +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 +Registered in 0.005930 seconds. +- Loaded All Assemblies, in 0.341 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.205 seconds +Domain Reload Profiling: 546ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (116ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (113ms) + TypeCache.Refresh (112ms) + TypeCache.ScanAssembly (93ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (206ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (159ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (109ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +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 1.164 seconds +Refreshing native plugins compatible for Editor in 3.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.481 seconds +Domain Reload Profiling: 1647ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (737ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (4ms) + FinalizeReload (483ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.593400 ms (FindLiveObjects: 0.313500 ms CreateObjectMapping: 0.093000 ms MarkObjects: 4.013000 ms DeleteObjects: 0.172700 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 Import Request. + Time since last request: 559123.913484 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc + artifactKey: Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc using Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a9170643d47ced7d25cc05e6a21d620') in 0.090369 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/12a - Text Interactions.unity + artifactKey: Guid(08572ab7713642c8a60789750f0bce5c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/12a - Text Interactions.unity using Guid(08572ab7713642c8a60789750f0bce5c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b2a61a0320a1b17b8a3076060f4feeea') in 0.017798 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000071 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro.cginc + artifactKey: Guid(407bc68d299748449bbf7f48ee690f8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro.cginc using Guid(407bc68d299748449bbf7f48ee690f8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'afc1d9a1fc2ba1490891f0531529e221') in 0.021400 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000088 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 1.prefab + artifactKey: Guid(a6e39ced0ea046bcb636c3f0b2e2a745) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 1.prefab using Guid(a6e39ced0ea046bcb636c3f0b2e2a745) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '476632c40782576e00604304d98aebdf') in 0.143813 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 16 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '92d2cd1f8d41ea6b4e3e82fa56ef7684') in 0.042924 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 39 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/03 - Line Justification.unity + artifactKey: Guid(21a509e1d3cd49978623fa564adb6f02) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/03 - Line Justification.unity using Guid(21a509e1d3cd49978623fa564adb6f02) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1f03b09643765384273698330d45ac1e') in 0.021362 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Textures/12211_Robot_diffuse.jpg + artifactKey: Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/12211_Robot_diffuse.jpg using Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd514c3833e6181a621b596996aeae1f9') in 0.058074 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 2.prefab + artifactKey: Guid(fdad9d952ae84cafb74c63f2e694d042) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 2.prefab using Guid(fdad9d952ae84cafb74c63f2e694d042) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd313e18af12d637dac0c1e3bd4ac847b') in 0.047402 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 16 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader + artifactKey: Guid(dd89cf5b9246416f84610a006f916af7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader using Guid(dd89cf5b9246416f84610a006f916af7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '059a57cf29d257e9fc2fbd66fcbd25a6') in 0.024674 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt + artifactKey: Guid(fade42e8bc714b018fac513c043d323b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt using Guid(fade42e8bc714b018fac513c043d323b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1b5465f1ab2948b080b1761f67522e34') in 0.017280 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.001952 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader + artifactKey: Guid(14eb328de4b8eb245bb7cea29e4ac00b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader using Guid(14eb328de4b8eb245bb7cea29e4ac00b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd009ba0db26453efcb5f2387b07d9bfc') in 0.019684 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf + artifactKey: Guid(5dd49b3eacc540408c98eee0de38e0f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf using Guid(5dd49b3eacc540408c98eee0de38e0f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '07704328a964d3c555dbae220c323e9a') in 0.032752 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/21 - Script Example.unity + artifactKey: Guid(50f52f9274434ecfb34dd87f0836f323) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/21 - Script Example.unity using Guid(50f52f9274434ecfb34dd87f0836f323) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4b433267d617c1c71b0169edc4dc4de2') in 0.015747 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader + artifactKey: Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader using Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a18b57fbe9fbf23879141d7405a897a6') in 0.023589 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000015 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd + artifactKey: Guid(fd09957580ac4326916010f1f260975b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd using Guid(fd09957580ac4326916010f1f260975b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd92695cd661299477d4769a350e7cda5') in 0.015731 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000084 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset + artifactKey: Guid(0161d805a3764c089bef00bfe00793f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset using Guid(0161d805a3764c089bef00bfe00793f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '111a770b8560adf94a5171e7480ecd7d') in 0.043401 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg + artifactKey: Guid(8878a782f4334ecbbcf683b3ac780966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg using Guid(8878a782f4334ecbbcf683b3ac780966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '560dfb01b8d71e3230c5ee2455884777') in 0.023517 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png + artifactKey: Guid(4ccf43d26c4748c792174516f4a8fcef) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png using Guid(4ccf43d26c4748c792174516f4a8fcef) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '099ed2046edbb6109ffd3b46db2ae649') in 0.017306 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000089 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd + artifactKey: Guid(ed5290d8df18488780e2996b9b882f01) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd using Guid(ed5290d8df18488780e2996b9b882f01) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '84fec0661ae4d72c4e05dc05f8904f19') in 0.016118 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs + artifactKey: Guid(d736ce056cf444ca96e424f4d9c42b76) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs using Guid(d736ce056cf444ca96e424f4d9c42b76) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9cd5c553d471c3777e3176516d947191') in 0.025542 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat + artifactKey: Guid(d75b8f41e959450c84ac6e967084d3e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat using Guid(d75b8f41e959450c84ac6e967084d3e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f67607841bcb9d6cfcd15aa9247775d8') in 0.048084 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png + artifactKey: Guid(a0fc465d6cf04254a2938578735e2383) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png using Guid(a0fc465d6cf04254a2938578735e2383) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '525472836782cbc15b542793f09214aa') in 0.035785 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset + artifactKey: Guid(8f586378b4e144a9851e7b34d9b748ee) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset using Guid(8f586378b4e144a9851e7b34d9b748ee) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '60d200d2fa6413a7fa190bc4a6bbf95d') in 0.043485 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 8 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat + artifactKey: Guid(749b9069dc4742c5bfa5c74644049926) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat using Guid(749b9069dc4742c5bfa5c74644049926) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ef25b79b19ae0f2cd4223541df16a10e') in 0.024959 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat + artifactKey: Guid(9ad269c99dcf42b7aedefd83dd5a7b9d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat using Guid(9ad269c99dcf42b7aedefd83dd5a7b9d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b6cb86ed7e8e6d656177aa578f0da5b9') in 0.030454 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/19 - Masking Texture & Soft Mask.unity + artifactKey: Guid(9abcd5bd764646568a6ea70d00f9264c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/19 - Masking Texture & Soft Mask.unity using Guid(9abcd5bd764646568a6ea70d00f9264c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0d27d00f79a93225642e548be1d4b316') in 0.014259 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/26 - Dropdown Placeholder Example.unity + artifactKey: Guid(0851605490a599b46b6ac5cb681d93ea) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/26 - Dropdown Placeholder Example.unity using Guid(0851605490a599b46b6ac5cb681d93ea) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd1fddf35999a6442999f19b1c5678a7a') in 0.021848 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/09 - Margin Tag Example.unity + artifactKey: Guid(349f38d3606449708c7340d26740e1e2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/09 - Margin Tag Example.unity using Guid(349f38d3606449708c7340d26740e1e2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '03068dca731976751e28d364734116c9') in 0.016343 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs + artifactKey: Guid(1312ae25639a4bae8e25ae223209cc50) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs using Guid(1312ae25639a4bae8e25ae223209cc50) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '70cffc812fbd4b2635a7ab07de3f1358') in 0.019705 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3863057b98510a69ed61c0191dd9e789') in 0.017907 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 4.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 0 Unused Serialized files (Serialized files now loaded: 0) +Unloading 1 unused Assets / (0.8 KB). Loaded Objects now: 3581. +Memory consumption went from 69.5 MB to 69.5 MB. +Total: 4.070900 ms (FindLiveObjects: 0.264900 ms CreateObjectMapping: 0.098500 ms MarkObjects: 3.689600 ms DeleteObjects: 0.017200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 137.118265 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '105290057e5b569bfee13e59309ead61') in 0.018555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 27.579852 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8ddf96a65da59805b0259e57b2606439') in 0.010859 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 9.554920 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2add8bd5cceaad4fff9504de3e6f31c0') in 0.013975 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 15.733113 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '46e0a1686ceeb23969d1d509364bf735') in 0.015723 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 6.661158 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '784bf3bacaa1742718276e142c78d10e') in 0.008591 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +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.498 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.763 seconds +Domain Reload Profiling: 1261ms + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (203ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (764ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3584. +Memory consumption went from 116.9 MB to 116.9 MB. +Total: 2.267200 ms (FindLiveObjects: 0.180600 ms CreateObjectMapping: 0.080100 ms MarkObjects: 1.964600 ms DeleteObjects: 0.040800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.494 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.505 seconds +Domain Reload Profiling: 999ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (505ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.01 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: 3587. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.541600 ms (FindLiveObjects: 0.180900 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.251200 ms DeleteObjects: 0.034700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.438 seconds +Refreshing native plugins compatible for Editor in 1.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 931ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (493ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.32 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: 3590. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.947700 ms (FindLiveObjects: 0.212900 ms CreateObjectMapping: 0.075900 ms MarkObjects: 2.619500 ms DeleteObjects: 0.038600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.667 seconds +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.737 seconds +Domain Reload Profiling: 1404ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (467ms) + LoadAssemblies (261ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (252ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (737ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.19 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: 3593. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.725000 ms (FindLiveObjects: 0.351200 ms CreateObjectMapping: 0.132300 ms MarkObjects: 3.188000 ms DeleteObjects: 0.051900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.671 seconds +Refreshing native plugins compatible for Editor in 2.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.710 seconds +Domain Reload Profiling: 1381ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (272ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (242ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (710ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.61 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: 3596. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.909400 ms (FindLiveObjects: 0.175400 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.604500 ms DeleteObjects: 0.051700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.729 seconds +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.294 seconds +Domain Reload Profiling: 2024ms + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (514ms) + LoadAssemblies (292ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (284ms) + TypeCache.ScanAssembly (273ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1295ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (403ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (300ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 1.15 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: 3599. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 5.177300 ms (FindLiveObjects: 0.257700 ms CreateObjectMapping: 0.075600 ms MarkObjects: 4.803000 ms DeleteObjects: 0.039800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.617 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.527 seconds +Domain Reload Profiling: 1144ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (240ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (199ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (527ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.50 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: 3602. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.571200 ms (FindLiveObjects: 0.199100 ms CreateObjectMapping: 0.078300 ms MarkObjects: 2.254900 ms DeleteObjects: 0.037800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.573 seconds +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.810 seconds +Domain Reload Profiling: 1383ms + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (266ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (811ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (36ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.33 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: 3605. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.895000 ms (FindLiveObjects: 0.181500 ms CreateObjectMapping: 0.106400 ms MarkObjects: 3.555100 ms DeleteObjects: 0.051000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.490 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 968ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 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: 3608. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.948800 ms (FindLiveObjects: 0.311600 ms CreateObjectMapping: 0.145600 ms MarkObjects: 3.411100 ms DeleteObjects: 0.079300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.685 seconds +Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.767 seconds +Domain Reload Profiling: 1451ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (465ms) + LoadAssemblies (278ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (261ms) + TypeCache.Refresh (254ms) + TypeCache.ScanAssembly (245ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (767ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (313ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.69 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: 3611. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 4.053300 ms (FindLiveObjects: 0.313900 ms CreateObjectMapping: 0.096900 ms MarkObjects: 3.600800 ms DeleteObjects: 0.040400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.673 seconds +Refreshing native plugins compatible for Editor in 3.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1515ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (456ms) + LoadAssemblies (255ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (264ms) + TypeCache.ScanAssembly (255ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (842ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.76 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: 3614. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.539300 ms (FindLiveObjects: 0.244300 ms CreateObjectMapping: 0.089700 ms MarkObjects: 3.162400 ms DeleteObjects: 0.041400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.432 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.494 seconds +Domain Reload Profiling: 926ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (494ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.04 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: 3617. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.426600 ms (FindLiveObjects: 0.284100 ms CreateObjectMapping: 0.144300 ms MarkObjects: 1.957900 ms DeleteObjects: 0.039400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.449 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.12 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: 3620. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.396300 ms (FindLiveObjects: 0.226300 ms CreateObjectMapping: 0.097700 ms MarkObjects: 2.032300 ms DeleteObjects: 0.038900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.484 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.696 seconds +Domain Reload Profiling: 1180ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (207ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (696ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (192ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (34ms) + ProcessInitializeOnLoadAttributes (139ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.14 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: 3623. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.464700 ms (FindLiveObjects: 0.171600 ms CreateObjectMapping: 0.061400 ms MarkObjects: 2.197300 ms DeleteObjects: 0.033700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.434 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.458 seconds +Domain Reload Profiling: 892ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (458ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + 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: 3626. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.016900 ms (FindLiveObjects: 0.264900 ms CreateObjectMapping: 0.113400 ms MarkObjects: 2.574500 ms DeleteObjects: 0.063200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.467 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (186ms) + TypeCache.ScanAssembly (178ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + 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: 3629. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.441400 ms (FindLiveObjects: 0.237800 ms CreateObjectMapping: 0.101300 ms MarkObjects: 2.064100 ms DeleteObjects: 0.037300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.488 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.683 seconds +Domain Reload Profiling: 1172ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (170ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (684ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.06 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: 3632. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.975400 ms (FindLiveObjects: 0.253500 ms CreateObjectMapping: 0.087100 ms MarkObjects: 2.567600 ms DeleteObjects: 0.066100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.461 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.460 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (306ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (460ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 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: 3635. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.104200 ms (FindLiveObjects: 0.188400 ms CreateObjectMapping: 0.071500 ms MarkObjects: 1.803100 ms DeleteObjects: 0.040100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.447 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.449 seconds +Domain Reload Profiling: 896ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (449ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 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: 3638. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.885200 ms (FindLiveObjects: 0.315200 ms CreateObjectMapping: 0.097600 ms MarkObjects: 2.427800 ms DeleteObjects: 0.043200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.439 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.466 seconds +Domain Reload Profiling: 905ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (466ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.57 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: 3641. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.408000 ms (FindLiveObjects: 0.222700 ms CreateObjectMapping: 0.093500 ms MarkObjects: 2.049000 ms DeleteObjects: 0.041800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.449 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.427 seconds +Domain Reload Profiling: 875ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (427ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (206ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +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.6 KB). Loaded Objects now: 3644. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.878200 ms (FindLiveObjects: 0.179700 ms CreateObjectMapping: 0.066300 ms MarkObjects: 2.599400 ms DeleteObjects: 0.031800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.446 seconds +Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 917ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 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: 3647. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.286700 ms (FindLiveObjects: 0.202800 ms CreateObjectMapping: 0.086400 ms MarkObjects: 1.955000 ms DeleteObjects: 0.041800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.689 seconds +Refreshing native plugins compatible for Editor in 3.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.791 seconds +Domain Reload Profiling: 1480ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (470ms) + LoadAssemblies (277ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (264ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (791ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.07 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: 3650. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.259600 ms (FindLiveObjects: 0.250600 ms CreateObjectMapping: 0.081100 ms MarkObjects: 2.849500 ms DeleteObjects: 0.040700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.451 seconds +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.483 seconds +Domain Reload Profiling: 934ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (483ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.19 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: 3653. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.500400 ms (FindLiveObjects: 0.250800 ms CreateObjectMapping: 0.101200 ms MarkObjects: 2.111600 ms DeleteObjects: 0.036000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.702 seconds +Refreshing native plugins compatible for Editor in 3.00 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.800 seconds +Domain Reload Profiling: 1502ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (488ms) + LoadAssemblies (285ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (801ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.45 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: 3656. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.078100 ms (FindLiveObjects: 0.270200 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.676100 ms DeleteObjects: 0.046500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.485 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.795 seconds +Domain Reload Profiling: 1280ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (333ms) + LoadAssemblies (200ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (795ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 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: 3659. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.515700 ms (FindLiveObjects: 0.230600 ms CreateObjectMapping: 0.083400 ms MarkObjects: 2.154300 ms DeleteObjects: 0.046500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.733 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.778 seconds +Domain Reload Profiling: 1511ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (486ms) + LoadAssemblies (286ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (263ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (778ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.36 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: 3662. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.139600 ms (FindLiveObjects: 0.244700 ms CreateObjectMapping: 0.089900 ms MarkObjects: 2.767800 ms DeleteObjects: 0.036300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.631 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (410ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (222ms) + TypeCache.Refresh (219ms) + TypeCache.ScanAssembly (212ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (504ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.13 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: 3665. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.850500 ms (FindLiveObjects: 0.278300 ms CreateObjectMapping: 0.139200 ms MarkObjects: 2.388600 ms DeleteObjects: 0.043600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.472 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.688 seconds +Domain Reload Profiling: 1160ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (689ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (211ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.12 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: 3668. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.271600 ms (FindLiveObjects: 0.214600 ms CreateObjectMapping: 0.076300 ms MarkObjects: 1.941100 ms DeleteObjects: 0.038900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.438 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.470 seconds +Domain Reload Profiling: 908ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (470ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.82 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: 3671. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.961400 ms (FindLiveObjects: 0.401500 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.415700 ms DeleteObjects: 0.048200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.719 seconds +Refreshing native plugins compatible for Editor in 3.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.147 seconds +Domain Reload Profiling: 1866ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (488ms) + LoadAssemblies (297ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (249ms) + TypeCache.ScanAssembly (238ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1147ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.48 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.5 KB). Loaded Objects now: 3674. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 8.765600 ms (FindLiveObjects: 0.254000 ms CreateObjectMapping: 0.081400 ms MarkObjects: 8.384400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.641 seconds +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 1149ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (405ms) + LoadAssemblies (267ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (212ms) + TypeCache.Refresh (208ms) + TypeCache.ScanAssembly (200ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 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: 3677. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.339600 ms (FindLiveObjects: 0.185400 ms CreateObjectMapping: 0.079100 ms MarkObjects: 2.041600 ms DeleteObjects: 0.032800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.705 seconds +Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.042 seconds +Domain Reload Profiling: 1747ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (297ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (259ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (241ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1043ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 4.17 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: 3680. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.055400 ms (FindLiveObjects: 0.260800 ms CreateObjectMapping: 0.088000 ms MarkObjects: 2.658100 ms DeleteObjects: 0.047600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.683 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 1175ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (476ms) + LoadAssemblies (276ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (270ms) + TypeCache.ScanAssembly (260ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (492ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.15 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: 3683. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.504300 ms (FindLiveObjects: 0.397100 ms CreateObjectMapping: 0.083000 ms MarkObjects: 1.990500 ms DeleteObjects: 0.032700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.450 seconds +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.435 seconds +Domain Reload Profiling: 885ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (435ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (214ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.12 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: 3686. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.886700 ms (FindLiveObjects: 0.271800 ms CreateObjectMapping: 0.095600 ms MarkObjects: 3.405200 ms DeleteObjects: 0.111800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.435 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 930ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (271ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (200ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.21 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: 3689. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.517800 ms (FindLiveObjects: 0.319200 ms CreateObjectMapping: 0.085400 ms MarkObjects: 2.072900 ms DeleteObjects: 0.039600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.489 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.606 seconds +Domain Reload Profiling: 1095ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (313ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (607ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.01 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: 3692. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.306800 ms (FindLiveObjects: 0.202600 ms CreateObjectMapping: 0.090200 ms MarkObjects: 1.975800 ms DeleteObjects: 0.037600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.446 seconds +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.435 seconds +Domain Reload Profiling: 881ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (435ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (215ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.39 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: 3695. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.585900 ms (FindLiveObjects: 0.372500 ms CreateObjectMapping: 0.117400 ms MarkObjects: 2.056000 ms DeleteObjects: 0.038800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.693 seconds +Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.778 seconds +Domain Reload Profiling: 1471ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (483ms) + LoadAssemblies (309ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (250ms) + TypeCache.Refresh (243ms) + TypeCache.ScanAssembly (234ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (779ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.00 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: 3698. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.285500 ms (FindLiveObjects: 0.255500 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.900800 ms DeleteObjects: 0.042100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.673 seconds +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.690 seconds +Domain Reload Profiling: 1364ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (465ms) + LoadAssemblies (268ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (259ms) + TypeCache.Refresh (254ms) + TypeCache.ScanAssembly (244ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (691ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.31 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: 3701. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.523300 ms (FindLiveObjects: 0.323100 ms CreateObjectMapping: 0.127400 ms MarkObjects: 2.038100 ms DeleteObjects: 0.033700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.720 seconds +Refreshing native plugins compatible for Editor in 2.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.793 seconds +Domain Reload Profiling: 1514ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (510ms) + LoadAssemblies (285ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (290ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (794ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.46 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: 3704. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.402500 ms (FindLiveObjects: 0.267800 ms CreateObjectMapping: 0.093200 ms MarkObjects: 2.991800 ms DeleteObjects: 0.048900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.447 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.489 seconds +Domain Reload Profiling: 936ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (490ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 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: 3707. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.641800 ms (FindLiveObjects: 0.230700 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.286900 ms DeleteObjects: 0.038300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2017.971530 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38e166982dc4a7741f82869fa7e8cc76') in 0.217469 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Import Request. + Time since last request: 32.856395 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6009e01b10aea21001927cedd98933d') in 0.052763 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 62 +======================================================================== +Received Import Request. + Time since last request: 11.312386 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77750f1d7a6bbe0909377fea1d52aa64') in 0.037497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 62 +======================================================================== +Received Import Request. + Time since last request: 5.910682 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da9f119376b9066d76eb7a63840e1216') in 0.038299 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +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.715 seconds +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.766 seconds +Domain Reload Profiling: 1481ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (496ms) + LoadAssemblies (287ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (766ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3718. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.515000 ms (FindLiveObjects: 0.203100 ms CreateObjectMapping: 0.082400 ms MarkObjects: 2.194300 ms DeleteObjects: 0.034300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 43.659355 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '169949e460a79b6019e0d3c63eb2b791') in 0.192322 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +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.471 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 957ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3721. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.344400 ms (FindLiveObjects: 0.242600 ms CreateObjectMapping: 0.076600 ms MarkObjects: 1.991000 ms DeleteObjects: 0.033400 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.448 seconds +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.479 seconds +Domain Reload Profiling: 927ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (480ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.52 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: 3724. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.843500 ms (FindLiveObjects: 0.362500 ms CreateObjectMapping: 0.102600 ms MarkObjects: 2.334300 ms DeleteObjects: 0.043100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.738 seconds +Refreshing native plugins compatible for Editor in 2.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.154 seconds +Domain Reload Profiling: 1893ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (509ms) + LoadAssemblies (299ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (285ms) + TypeCache.Refresh (279ms) + TypeCache.ScanAssembly (269ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1155ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.35 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: 3727. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.600400 ms (FindLiveObjects: 0.236500 ms CreateObjectMapping: 0.098300 ms MarkObjects: 2.227000 ms DeleteObjects: 0.037900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 135.628575 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec996013f4e1513dce3b8de4cc507807') in 0.187760 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Import Request. + Time since last request: 3.788439 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8c14b0616118fce5ec98d0f1bfa5b78') in 0.019613 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.439 seconds +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 939ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (500ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.237800 ms (FindLiveObjects: 0.187100 ms CreateObjectMapping: 0.081000 ms MarkObjects: 1.932900 ms DeleteObjects: 0.035900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.440 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 918ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 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: 3733. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.481300 ms (FindLiveObjects: 0.203900 ms CreateObjectMapping: 0.078600 ms MarkObjects: 2.105700 ms DeleteObjects: 0.092000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.475 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.525 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (525ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 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: 3736. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.743400 ms (FindLiveObjects: 0.211500 ms CreateObjectMapping: 0.073800 ms MarkObjects: 2.413500 ms DeleteObjects: 0.043700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.466 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 975ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.03 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.5 KB). Loaded Objects now: 3739. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.409800 ms (FindLiveObjects: 0.176800 ms CreateObjectMapping: 0.069800 ms MarkObjects: 2.126600 ms DeleteObjects: 0.035800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.452 seconds +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 947ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 3.13 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: 3742. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.823000 ms (FindLiveObjects: 0.303200 ms CreateObjectMapping: 0.112200 ms MarkObjects: 2.360600 ms DeleteObjects: 0.045800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.747 seconds +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.829 seconds +Domain Reload Profiling: 1576ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (284ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (311ms) + TypeCache.Refresh (301ms) + TypeCache.ScanAssembly (289ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (7ms) + FinalizeReload (830ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.94 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: 3745. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.396400 ms (FindLiveObjects: 0.270000 ms CreateObjectMapping: 0.094100 ms MarkObjects: 2.991300 ms DeleteObjects: 0.039700 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.751 seconds +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.859 seconds +Domain Reload Profiling: 1610ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (514ms) + LoadAssemblies (288ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (294ms) + TypeCache.ScanAssembly (284ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (860ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.64 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: 3748. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.809300 ms (FindLiveObjects: 0.290900 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.390000 ms DeleteObjects: 0.042900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.462 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.515 seconds +Domain Reload Profiling: 978ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (192ms) + TypeCache.Refresh (188ms) + TypeCache.ScanAssembly (180ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (516ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.14 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: 3751. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.311100 ms (FindLiveObjects: 0.185100 ms CreateObjectMapping: 0.074000 ms MarkObjects: 2.014600 ms DeleteObjects: 0.036300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.480 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.465 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (320ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (188ms) + TypeCache.ScanAssembly (179ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (466ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.82 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: 3754. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.602500 ms (FindLiveObjects: 0.252900 ms CreateObjectMapping: 0.164800 ms MarkObjects: 2.144600 ms DeleteObjects: 0.039100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.484 seconds +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.544 seconds +Domain Reload Profiling: 1028ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (544ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.79 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: 3757. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.523200 ms (FindLiveObjects: 0.205900 ms CreateObjectMapping: 0.085300 ms MarkObjects: 2.171400 ms DeleteObjects: 0.059500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.707 seconds +Refreshing native plugins compatible for Editor in 3.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1548ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (266ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (283ms) + TypeCache.ScanAssembly (273ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (842ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.34 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: 3760. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.026800 ms (FindLiveObjects: 0.261100 ms CreateObjectMapping: 0.126500 ms MarkObjects: 2.598400 ms DeleteObjects: 0.039300 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.555 seconds +Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.593 seconds +Domain Reload Profiling: 1148ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (387ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (253ms) + TypeCache.Refresh (249ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (593ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.53 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: 3763. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.889900 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.512000 ms DeleteObjects: 0.055600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.687 seconds +Refreshing native plugins compatible for Editor in 2.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1447ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (273ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (256ms) + TypeCache.ScanAssembly (246ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (760ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.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: 3766. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.184900 ms (FindLiveObjects: 0.337800 ms CreateObjectMapping: 0.089200 ms MarkObjects: 2.712400 ms DeleteObjects: 0.044200 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.679 seconds +Refreshing native plugins compatible for Editor in 2.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.647 seconds +Domain Reload Profiling: 1326ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (456ms) + LoadAssemblies (255ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (277ms) + TypeCache.Refresh (271ms) + TypeCache.ScanAssembly (260ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (647ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 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: 3769. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.598300 ms (FindLiveObjects: 0.203700 ms CreateObjectMapping: 0.082400 ms MarkObjects: 2.272500 ms DeleteObjects: 0.038600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 395.550918 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f67693143a84c56694e48d1eaa02748') in 0.096859 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Import Request. + Time since last request: 6.929757 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8de46de334b324bdf3ec9d29539032d8') in 0.037983 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.450 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.503 seconds +Domain Reload Profiling: 953ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (504ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.526700 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.086900 ms MarkObjects: 2.181400 ms DeleteObjects: 0.042600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.541 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.603 seconds +Domain Reload Profiling: 1144ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (369ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (230ms) + TypeCache.Refresh (224ms) + TypeCache.ScanAssembly (214ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (603ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (285ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.81 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: 3775. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.955400 ms (FindLiveObjects: 0.344100 ms CreateObjectMapping: 0.116100 ms MarkObjects: 2.411400 ms DeleteObjects: 0.082500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 60.147909 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7127e2871e1857cf7103ccba0a38e084') in 0.188622 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Import Request. + Time since last request: 5.762067 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e32ad9a8da142713b895805f955cdf37') in 0.112698 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.444 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.447 seconds +Domain Reload Profiling: 891ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (447ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.836100 ms (FindLiveObjects: 0.409100 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.301700 ms DeleteObjects: 0.039600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 124.513951 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c95251c780486e3f634d4ef172e3727') in 0.101860 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.597 seconds +Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.636 seconds +Domain Reload Profiling: 1233ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (411ms) + LoadAssemblies (214ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (250ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (636ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3781. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 3.616600 ms (FindLiveObjects: 0.323100 ms CreateObjectMapping: 0.130000 ms MarkObjects: 3.081400 ms DeleteObjects: 0.079900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 6.701673 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd25fa244fdebb950f4b934bd198ab3f') in 0.105368 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.566 seconds +Domain Reload Profiling: 1113ms + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (210ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (215ms) + TypeCache.Refresh (211ms) + TypeCache.ScanAssembly (202ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (567ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (272ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3784. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.839800 ms (FindLiveObjects: 0.287600 ms CreateObjectMapping: 0.255300 ms MarkObjects: 2.249900 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.520 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.538 seconds +Domain Reload Profiling: 1058ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (205ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (538ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.63 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: 3787. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.877700 ms (FindLiveObjects: 0.214800 ms CreateObjectMapping: 0.083800 ms MarkObjects: 2.537700 ms DeleteObjects: 0.040500 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.658 seconds +Refreshing native plugins compatible for Editor in 3.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.758 seconds +Domain Reload Profiling: 1416ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (447ms) + LoadAssemblies (241ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (256ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (759ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.14 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: 3790. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.083800 ms (FindLiveObjects: 0.322800 ms CreateObjectMapping: 0.093400 ms MarkObjects: 2.620200 ms DeleteObjects: 0.046000 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + 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.633 seconds +Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.540 seconds +Domain Reload Profiling: 1173ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (400ms) + LoadAssemblies (239ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (223ms) + TypeCache.Refresh (218ms) + TypeCache.ScanAssembly (210ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (540ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (293ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 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: 3793. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.755700 ms (FindLiveObjects: 0.212200 ms CreateObjectMapping: 0.083200 ms MarkObjects: 2.420500 ms DeleteObjects: 0.038800 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 54.264974 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42ed4aa7c70db6617870c9fbc7f8397a') in 0.096840 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.513 seconds +Refreshing native plugins compatible for Editor in 7.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.620 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (336ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (621ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3796. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 4.134400 ms (FindLiveObjects: 0.395100 ms CreateObjectMapping: 0.137300 ms MarkObjects: 3.540300 ms DeleteObjects: 0.060600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 7.243425 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e36d092bababd6343c2e1d19821ebbee') in 0.088881 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.483 seconds +Refreshing native plugins compatible for Editor in 3.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 975ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (182ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (492ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3799. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 2.915400 ms (FindLiveObjects: 0.361700 ms CreateObjectMapping: 0.110000 ms MarkObjects: 2.400100 ms DeleteObjects: 0.042600 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 57.031704 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e963955dfa8cc5d4c5ac906fea34e3e') in 0.191467 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +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.723 seconds +Refreshing native plugins compatible for Editor in 8.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.867 seconds +Domain Reload Profiling: 1590ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (489ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (290ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (867ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3802. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 3.841000 ms (FindLiveObjects: 0.345000 ms CreateObjectMapping: 0.141400 ms MarkObjects: 3.293900 ms DeleteObjects: 0.059100 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:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4.236957 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c327fba04c6225b53c3e90ec1761afdc') in 0.154760 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 diff --git a/LMC/UserSettings/Layouts/default-2022.dwlt b/LMC/UserSettings/Layouts/default-2022.dwlt index 07787f66..ff7da18e 100644 --- a/LMC/UserSettings/Layouts/default-2022.dwlt +++ b/LMC/UserSettings/Layouts/default-2022.dwlt @@ -119,7 +119,11 @@ MonoBehaviour: m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 0 +<<<<<<< HEAD controlID: 94 +======= + controlID: 40 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,8 +143,13 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 +<<<<<<< HEAD width: 976.6667 height: 627.3333 +======= + width: 1549.6 + height: 1010.80005 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 @@ -164,8 +173,13 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 +<<<<<<< HEAD width: 976.6667 height: 371.33334 +======= + width: 1549.6 + height: 598.4 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 @@ -187,11 +201,19 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 +<<<<<<< HEAD width: 237.33333 height: 371.33334 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 14} +======= + width: 377.6 + height: 598.4 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 13} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_Panes: - {fileID: 14} m_Selected: 0 @@ -211,10 +233,17 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 +<<<<<<< HEAD x: 237.33333 y: 0 width: 739.3334 height: 371.33334 +======= + x: 377.6 + y: 0 + width: 1172 + height: 598.4 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 15} @@ -240,12 +269,21 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 +<<<<<<< HEAD y: 371.33334 width: 976.6667 height: 255.99997 m_MinSize: {x: 100, y: 100} m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 13} +======= + y: 598.4 + width: 1549.6 + height: 412.40002 + m_MinSize: {x: 231, y: 271} + m_MaxSize: {x: 10001, y: 10021} + m_ActualView: {fileID: 16} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_Panes: - {fileID: 17} - {fileID: 13} @@ -266,10 +304,17 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 +<<<<<<< HEAD x: 976.6667 y: 0 width: 303.3333 height: 627.3333 +======= + x: 1549.6 + y: 0 + width: 498.40002 + height: 1010.80005 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 18} @@ -368,9 +413,15 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 +<<<<<<< HEAD y: 444 width: 975.6667 height: 234.99997 +======= + y: 672 + width: 1548.6 + height: 391.40002 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -402,9 +453,15 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 +<<<<<<< HEAD y: 72.66667 width: 236.33333 height: 350.33334 +======= + y: 73.6 + width: 376.6 + height: 577.4 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -418,23 +475,29 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} +<<<<<<< HEAD m_SelectedIDs: ba5d0000 m_LastClickedID: 23994 m_ExpandedIDs: 52f1ffffb8f1ffffc85c00000a5d0000 +======= + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: b6e6ffffc8e6ffffd2e6ffff58e8ffff62e8ffff20ebffffe4ebffff2cfbffffd2590000e6590000525a0000 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: Boxes + m_OriginalName: Boxes m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 22994 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 0 m_ClientGUIView: {fileID: 8} m_SearchString: @@ -464,10 +527,17 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 +<<<<<<< HEAD x: 237.33334 y: 72.66667 width: 737.3334 height: 350.33334 +======= + x: 377.6 + y: 73.6 + width: 1170 + height: 577.4 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -755,7 +825,11 @@ MonoBehaviour: floating: 0 collapsed: 0 displayed: 1 +<<<<<<< HEAD snapOffset: {x: 199.73346, y: 0} +======= + snapOffset: {x: 632.8, y: 10.400024} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 snapOffsetDelta: {x: 0, y: 0} snapCorner: 0 id: UnityEditor.SceneViewCameraOverlay @@ -774,9 +848,15 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: +<<<<<<< HEAD m_Target: {x: 54.929623, y: 14.45775, z: -39.83504} speed: 2 m_Value: {x: 54.929623, y: 14.45775, z: -39.83504} +======= + m_Target: {x: 168.2456, y: -18.17496, z: -113.54839} + speed: 2 + m_Value: {x: 12.164255, y: 3.7472608, z: -12.235546} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -822,6 +902,7 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: +<<<<<<< HEAD m_Target: {x: 0.24926549, y: 0.08412684, z: -0.02174161, w: 0.96453255} speed: 2 m_Value: {x: 0.24926472, y: 0.08412658, z: -0.021741543, w: 0.9645296} @@ -829,13 +910,22 @@ MonoBehaviour: m_Target: 138.88458 speed: 2 m_Value: 132.9039 +======= + m_Target: {x: 0.08257523, y: 0.73403174, z: -0.090743445, w: 0.6679471} + speed: 2 + m_Value: {x: 0.2399121, y: 0.07418014, z: -0.018388972, w: 0.96778166} + m_Size: + m_Target: 150.10303 + speed: 2 + m_Value: 11.807482 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_Ortho: m_Target: 0 speed: 2 m_Value: 0 m_CameraSettings: - m_Speed: 0.88056 - m_SpeedNormalized: 0.44 + m_Speed: 0.94053 + m_SpeedNormalized: 0.47 m_SpeedMin: 0.001 m_SpeedMax: 2 m_EasingEnabled: 1 @@ -873,10 +963,17 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 +<<<<<<< HEAD x: 237.33334 y: 72.66667 width: 737.3334 height: 350.33334 +======= + x: 377.6 + y: 73.6 + width: 1170 + height: 577.4 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -929,16 +1026,24 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 +<<<<<<< HEAD width: 737.3334 height: 329.33334 m_Scale: {x: 1.2652915, y: 1.2652915} m_Translation: {x: 368.30865, y: 120.98201} +======= + width: 1170 + height: 556.4 + m_Scale: {x: 1, y: 1} + m_Translation: {x: 585, y: 278.2} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 +<<<<<<< HEAD x: -291.08603 y: -95.61592 width: 582.738 @@ -946,6 +1051,15 @@ MonoBehaviour: m_MinimalGUI: 1 m_defaultScale: 1 m_LastWindowPixelSize: {x: 1106, y: 525.5} +======= + x: -585 + y: -278.2 + width: 1170 + height: 556.4 + m_MinimalGUI: 1 + m_defaultScale: 1 + m_LastWindowPixelSize: {x: 1462.5, y: 721.75} +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 00000000000000000000 @@ -972,9 +1086,15 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 +<<<<<<< HEAD y: 444 width: 975.6667 height: 234.99997 +======= + y: 672 + width: 1548.6 + height: 391.40002 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -1013,9 +1133,15 @@ MonoBehaviour: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} +<<<<<<< HEAD m_SelectedIDs: 8c600000 m_LastClickedID: 24716 m_ExpandedIDs: 00000000541e00008c60000000ca9a3bffffff7f +======= + m_SelectedIDs: da5d0000 + m_LastClickedID: 24026 + m_ExpandedIDs: 00000000da5d0000dc5d000000ca9a3b +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1043,7 +1169,11 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 +<<<<<<< HEAD m_ExpandedIDs: 00000000541e00008c600000 +======= + m_ExpandedIDs: 00000000da5d0000dc5d0000 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1068,10 +1198,17 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: +<<<<<<< HEAD m_SelectedInstanceIDs: 0a5d0000 m_LastClickedInstanceID: 23818 m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: c6230000147d000078590000dc5d0000105f0000225f00001c5f0000 +======= + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 1 + m_ExpandedInstanceIDs: c6230000147d000078590000dc5d0000 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -1119,10 +1256,17 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 +<<<<<<< HEAD x: 976.6667 y: 72.66667 width: 302.3333 height: 606.3333 +======= + x: 1549.6 + y: 73.6 + width: 497.40002 + height: 989.80005 +>>>>>>> b04abe1cd99255e43bafd2bc3dd46ef3f1205d84 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 diff --git a/LMC/UserSettings/Search.index b/LMC/UserSettings/Search.index new file mode 100644 index 00000000..dba62d53 --- /dev/null +++ b/LMC/UserSettings/Search.index @@ -0,0 +1,13 @@ +{ + "name": "Assets", + "roots": ["Assets"], + "includes": [], + "excludes": [], + "options": { + "types": true, + "properties": true, + "extended": false, + "dependencies": false + }, + "baseScore": 999 +} \ No newline at end of file diff --git a/LMC/UserSettings/Search.settings b/LMC/UserSettings/Search.settings new file mode 100644 index 00000000..36d914c3 --- /dev/null +++ b/LMC/UserSettings/Search.settings @@ -0,0 +1,75 @@ +trackSelection = true +refreshSearchWindowsInPlayMode = false +fetchPreview = true +defaultFlags = 0 +keepOpen = false +queryFolder = "Assets" +onBoardingDoNotAskAgain = true +showPackageIndexes = false +showStatusBar = false +scopes = { +} +providers = { + performance = { + active = false + priority = 100 + defaultAction = null + } + asset = { + active = true + priority = 25 + defaultAction = null + } + log = { + active = false + priority = 210 + defaultAction = null + } + profilermarkers = { + active = false + priority = 100 + defaultAction = null + } + find = { + active = true + priority = 25 + defaultAction = null + } + adb = { + active = false + priority = 2500 + defaultAction = null + } + scene = { + active = true + priority = 50 + defaultAction = null + } + packages = { + active = true + priority = 90 + defaultAction = null + } + store = { + active = true + priority = 100 + defaultAction = null + } +} +objectSelectors = { +} +recentSearches = [ +] +searchItemFavorites = [ +] +savedSearchesSortOrder = 0 +showSavedSearchPanel = false +hideTabs = false +expandedQueries = [ +] +queryBuilder = false +ignoredProperties = "id;name;classname;imagecontentshash" +helperWidgetCurrentArea = "all" +disabledIndexers = "" +minIndexVariations = 2 +findProviderIndexHelper = true \ No newline at end of file