diff --git a/.vs/omega/v16/.suo b/.vs/omega/v16/.suo index 215a0bd0..13c9b1cd 100644 Binary files a/.vs/omega/v16/.suo and b/.vs/omega/v16/.suo differ diff --git a/Assets/Scenes/Inventory.unity b/Assets/Scenes/Inventory.unity index 6def8c63..62d219ee 100644 --- a/Assets/Scenes/Inventory.unity +++ b/Assets/Scenes/Inventory.unity @@ -1788,6 +1788,7 @@ GameObject: - component: {fileID: 874489556} - component: {fileID: 874489557} - component: {fileID: 874489558} + - component: {fileID: 874489559} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -1888,6 +1889,7 @@ MonoBehaviour: - {fileID: 4068511147674530333, guid: ca90993e80150994e905b83ffd525f53, type: 3} - {fileID: 726422991776119786, guid: ffde653421f3d064cbdfc3b4571a5a2a, type: 3} playerEquipment: [] + localplayerEquipment: [] imagePlug: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} playerPlace: - {fileID: 825830644} @@ -1913,6 +1915,27 @@ MonoBehaviour: desqription: {fileID: 738032750} icon: {fileID: 1450462476} AddButton: {fileID: 1220524078} +--- !u!114 &874489559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874489552} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cd8d4ce0f427a174cb479d11b8f992b3, type: 3} + m_Name: + m_EditorClassIdentifier: + buttonPrefab: {fileID: 845954423796914200, guid: f33090d3cfbeff54cb49cc789b59da51, type: 3} + parent: {fileID: 1898368028} + allButtonLinks: [] + distX: 30 + distY: 30 + maxHeroesInRow: 3 + maxHeroesInColumn: 3 + maxHeroButOnPage: 0 + page: 0 --- !u!1 &1002328282 GameObject: m_ObjectHideFlags: 0 @@ -3716,7 +3739,7 @@ MonoBehaviour: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1898368028} - m_Enabled: 1 + m_Enabled: 0 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: cd8d4ce0f427a174cb479d11b8f992b3, type: 3} m_Name: @@ -3728,6 +3751,7 @@ MonoBehaviour: distY: 30 maxHeroesInRow: 3 maxHeroesInColumn: 3 + maxHeroButOnPage: 0 page: 0 --- !u!1 &1981398485 GameObject: diff --git a/Assets/Scripts/Inventory/AddEquipment.cs b/Assets/Scripts/Inventory/AddEquipment.cs index dc1b2d22..cede29e4 100644 --- a/Assets/Scripts/Inventory/AddEquipment.cs +++ b/Assets/Scripts/Inventory/AddEquipment.cs @@ -15,6 +15,8 @@ public class AddEquipment : MonoBehaviour { Inventory.main.playerPlace[i].image.sprite = Inventory.main.imagePlug; Inventory.main.playerPlace[i].GetComponent().equipmentNum = -1; + Inventory.main.localplayerEquipment.Add(Inventory.main.allEquipment[Inventory.main.lastCardNum]); + Inventory.main.gameObject.GetComponent().InstantiateEquipmentButton(0, 9); } } } @@ -22,6 +24,8 @@ public class AddEquipment : MonoBehaviour { Inventory.main.playerEquipment.Add(Inventory.main.allEquipment[Inventory.main.lastCardNum]); Inventory.main.WhichPlace(Inventory.main.lastCardNum); + Inventory.main.localplayerEquipment.Remove(Inventory.main.allEquipment[Inventory.main.lastCardNum]); + Inventory.main.gameObject.GetComponent().InstantiateEquipmentButton(0, 9); } DataScript.PlayerEquipment = Inventory.main.playerEquipment; diff --git a/Assets/Scripts/Inventory/EquipmentInfo.cs b/Assets/Scripts/Inventory/EquipmentInfo.cs index 48094853..e04f1f52 100644 --- a/Assets/Scripts/Inventory/EquipmentInfo.cs +++ b/Assets/Scripts/Inventory/EquipmentInfo.cs @@ -35,8 +35,6 @@ public class EquipmentInfo : MonoBehaviour icon.sprite = Inventory.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; if (Inventory.main.EquipedOrNot(Inventory.main.lastCardNum)) AddButton.GetComponentInChildren().text = "UnEquip"; - - else AddButton.GetComponentInChildren().text = "Equip"; } diff --git a/Assets/Scripts/Inventory/Inventory.cs b/Assets/Scripts/Inventory/Inventory.cs index b0962651..e83e3121 100644 --- a/Assets/Scripts/Inventory/Inventory.cs +++ b/Assets/Scripts/Inventory/Inventory.cs @@ -8,6 +8,7 @@ public class Inventory : MonoBehaviour public static Inventory main; public List allEquipment = new List(); public List playerEquipment = new List(); + [SerializeField] public List localplayerEquipment = new List(); public Sprite imagePlug; @@ -20,6 +21,7 @@ public class Inventory : MonoBehaviour { main = this; playerEquipment = DataScript.PlayerEquipment; + localplayerEquipment.AddRange(allEquipment); } public bool EquipedOrNot(int _num) @@ -42,7 +44,7 @@ public class Inventory : MonoBehaviour allEquipment[_num].GetComponent().equipmentConfig. equipmentCharacteristics; if (_config == null) Debug.LogError("config not found!"); - if (playerPlace[i].name == _config.name) + if (playerPlace[i].name == _config.place.ToString()) { playerPlace[i].image.sprite = _config.sprite; playerPlace[i].GetComponent().equipmentNum = lastCardNum; diff --git a/Assets/Scripts/Inventory/PlaceEquipment.cs b/Assets/Scripts/Inventory/PlaceEquipment.cs index fe8ced62..3b5d4db5 100644 --- a/Assets/Scripts/Inventory/PlaceEquipment.cs +++ b/Assets/Scripts/Inventory/PlaceEquipment.cs @@ -12,7 +12,10 @@ public class PlaceEquipment : MonoBehaviour { //Óðàààààà, âñå ðàáîòàåò if (GetComponentInChildren().sprite.name != Inventory.main.imagePlug.name && equipmentNum != -1) + { + Inventory.main.lastCardNum = equipmentNum; EquipmentInfo.main.CardAbout(equipmentNum); + } } } diff --git a/Assets/Scripts/Inventory/SpawnButton.cs b/Assets/Scripts/Inventory/SpawnButton.cs index 63aefa94..a2241350 100644 --- a/Assets/Scripts/Inventory/SpawnButton.cs +++ b/Assets/Scripts/Inventory/SpawnButton.cs @@ -16,7 +16,7 @@ public class SpawnButton : MonoBehaviour [SerializeField] private int maxHeroesInRow = 3; [SerializeField] private int maxHeroesInColumn = 3; - private int maxHeroButOnPage; + public int maxHeroButOnPage; [SerializeField] private int page; @@ -29,7 +29,7 @@ public class SpawnButton : MonoBehaviour public void ChangePage(int _page) { - if ((page + _page) * maxHeroButOnPage - Inventory.main.allEquipment.Count < 0) + if ((page + _page) * maxHeroButOnPage - Inventory.main.localplayerEquipment.Count < 0) { if (page + _page > -1) { @@ -47,13 +47,19 @@ public class SpawnButton : MonoBehaviour public void InstantiateEquipmentButton(int _begin, int _end) { + for (int i = 0; i < allButtonLinks.Count; i++) + { + Destroy(allButtonLinks[i]); + } + allButtonLinks.Clear(); + float _x = 0; float _y = 0; int _counter = 0; for (int i = _begin; i < _end; i++) { - if (i > Inventory.main.allEquipment.Count - 1) + if (i > Inventory.main.localplayerEquipment.Count - 1) { break; } @@ -62,7 +68,7 @@ public class SpawnButton : MonoBehaviour link.transform.GetComponent().num = i; link.transform.localPosition = new Vector3(_x, _y, 0); - link.image.sprite = Inventory.main.allEquipment[i].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + link.image.sprite = Inventory.main.localplayerEquipment[i].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; _x += gameObject.GetComponent().rect.width + distX; diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 5bbff7c4..f91e51fd 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f b/Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f deleted file mode 100644 index 72dbbd82..00000000 Binary files a/Library/Artifacts/2a/2aa6a31f6b737bde588f32665c7a748f and /dev/null differ diff --git a/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 b/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 deleted file mode 100644 index 892f16ef..00000000 Binary files a/Library/Artifacts/4b/4b23d40f3a76da33c3252fdf78807e62 and /dev/null differ diff --git a/Library/Artifacts/61/61217e80c110570962c6e7939452fcc9 b/Library/Artifacts/61/61217e80c110570962c6e7939452fcc9 deleted file mode 100644 index e3e0429f..00000000 Binary files a/Library/Artifacts/61/61217e80c110570962c6e7939452fcc9 and /dev/null differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index f58ad45a..fd247350 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -15,12 +15,12 @@ MonoBehaviour: m_PixelRect: serializedVersion: 2 x: 0 - y: 43.2 - width: 1536 - height: 780.8 + y: 43 + width: 1920 + height: 997 m_ShowMode: 4 m_Title: Game - m_RootView: {fileID: 2} + m_RootView: {fileID: 6} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 @@ -33,26 +33,130 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: m_Children: + - {fileID: 9} - {fileID: 3} - - {fileID: 4} - - {fileID: 5} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1920 + height: 947 + m_MinSize: {x: 678, y: 492} + m_MaxSize: {x: 14002, y: 14042} + vertical: 0 + controlID: 63 +--- !u!114 &3 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1531 + y: 0 + width: 389 + height: 947 + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &4 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1536 - height: 781 + width: 379 + height: 573 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &5 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: ProjectBrowser + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 573 + width: 1531 + height: 374 + m_MinSize: {x: 231, y: 271} + m_MaxSize: {x: 10001, y: 10021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + - {fileID: 18} + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &6 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 7} + - {fileID: 2} + - {fileID: 8} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 1920 + height: 997 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 m_TopViewHeight: 30 m_UseBottomView: 1 m_BottomViewHeight: 20 ---- !u!114 &3 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -69,42 +173,15 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1536 + width: 1920 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LoadedToolbars: - - {fileID: 17} - m_MainToolbar: {fileID: 17} + - {fileID: 19} + m_MainToolbar: {fileID: 19} m_LastLoadedLayoutName: ---- !u!114 &4 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: - - {fileID: 6} - - {fileID: 7} - - {fileID: 8} - - {fileID: 9} - m_Position: - serializedVersion: 2 - x: 0 - y: 30 - width: 1536 - height: 731 - m_MinSize: {x: 909, y: 442} - m_MaxSize: {x: 22004, y: 10021} - vertical: 0 - controlID: 36 ---- !u!114 &5 +--- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -120,12 +197,12 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 761 - width: 1536 + y: 977 + width: 1920 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &6 +--- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -139,95 +216,17 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 10} - - {fileID: 11} + - {fileID: 5} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 827.2 - height: 731 - m_MinSize: {x: 201, y: 442} - m_MaxSize: {x: 4001, y: 8042} + width: 1531 + height: 947 + m_MinSize: {x: 402, y: 492} + m_MaxSize: {x: 10001, y: 14042} vertical: 1 - controlID: 76 ---- !u!114 &7 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 827.2 - y: 0 - width: 200 - height: 731 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 12} - m_Panes: - - {fileID: 12} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &8 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 1027.2 - y: 0 - width: 232 - height: 731 - m_MinSize: {x: 232, y: 271} - m_MaxSize: {x: 10002, y: 10021} - m_ActualView: {fileID: 14} - m_Panes: - - {fileID: 14} - m_Selected: 0 - m_LastSelected: 0 ---- !u!114 &9 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 1259.2 - y: 0 - width: 276.80005 - height: 731 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 13} - m_Panes: - - {fileID: 13} - m_Selected: 0 - m_LastSelected: 0 + controlID: 114 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -237,23 +236,22 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_Children: [] + m_Children: + - {fileID: 4} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 827.2 - height: 220.8 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 16} - m_Panes: - - {fileID: 16} - m_Selected: 0 - m_LastSelected: 0 + width: 1531 + height: 573 + m_MinSize: {x: 402, y: 221} + m_MaxSize: {x: 8002, y: 4021} + vertical: 0 + controlID: 115 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -264,21 +262,23 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Name: GameView m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 0 - y: 220.8 - width: 827.2 - height: 510.2 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 15} + x: 379 + y: 0 + width: 1152 + height: 573 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 17} m_Panes: - - {fileID: 15} - m_Selected: 0 + - {fileID: 16} + - {fileID: 17} + - {fileID: 12} + m_Selected: 1 m_LastSelected: 0 --- !u!114 &12 MonoBehaviour: @@ -289,89 +289,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 400, y: 100} + m_MaxSize: {x: 2048, y: 2048} m_TitleContent: - m_Text: Hierarchy - m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Asset Store + m_Image: {fileID: -8693916549880196297, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 827.2 - y: 73.6 - width: 198 - height: 710 + x: 468 + y: 181 + width: 973 + height: 501 m_ViewDataDictionary: {fileID: 0} - m_SceneHierarchy: - m_TreeViewState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: 568fffff469cffff4cbfffff82f0ffff9cfaffff3efbffff744200009042000052450000ca850000ec910000bc92000024930000 - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: LowerBackground - m_OriginalName: LowerBackground - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 37356 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 0 - m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 7} - m_SearchString: - m_ExpandedScenes: [] - m_CurrenRootInstanceID: 0 - m_LockTracker: - m_IsLocked: 0 - m_CurrentSortingName: TransformSorting - m_WindowGUID: 69ecbac459fb9794c855039793ba3e1f --- !u!114 &13 -MonoBehaviour: - m_ObjectHideFlags: 52 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 1 - m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} - m_Name: - m_EditorClassIdentifier: - m_MinSize: {x: 275, y: 50} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Inspector - m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0} - m_Tooltip: - m_Pos: - serializedVersion: 2 - x: 1259.2001 - y: 73.6 - width: 275.80005 - height: 710 - m_ViewDataDictionary: {fileID: 0} - m_ObjectsLockedBeforeSerialization: [] - m_InstanceIDsLockedBeforeSerialization: - m_PreviewResizer: - m_CachedPref: 160 - m_ControlHash: -371814159 - m_PrefName: Preview_InspectorPreview - m_LastInspectedObjectInstanceID: -1 - m_LastVerticalScrollValue: 0 - m_GlobalObjectId: - m_LockTracker: - m_IsLocked: 0 - m_PreviewWindow: {fileID: 0} ---- !u!114 &14 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -387,14 +321,14 @@ MonoBehaviour: m_MaxSize: {x: 10000, y: 10000} m_TitleContent: m_Text: Project - m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 1027.2001 - y: 73.6 - width: 230 - height: 710 + x: 0 + y: 646 + width: 1530 + height: 353 m_ViewDataDictionary: {fileID: 0} m_SearchFilter: m_NameFilter: @@ -409,22 +343,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Prefabs/Cards + - Assets/Scenes m_Globs: [] m_OriginalText: m_ViewMode: 1 - m_StartGridSize: 16 + m_StartGridSize: 64 m_LastFolders: - - Assets/Prefabs/Cards - m_LastFoldersGridSize: 16 - m_LastProjectPath: C:\Users\Dara\Documents\1\PO + - Assets/Scenes + m_LastFoldersGridSize: -1 + m_LastProjectPath: "E:\\Projects \u0441#\\Unity\\omega" m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: 28430000 - m_LastClickedID: 17192 - m_ExpandedIDs: 000000001e43000020430000224300002443000026430000284300002a430000424300005c43000000ca9a3b + scrollPos: {x: 0, y: 3} + m_SelectedIDs: 38430000 + m_LastClickedID: 17208 + m_ExpandedIDs: 000000002a4300002c4300002e430000304300003a43000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -440,7 +374,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 8} + m_ClientGUIView: {fileID: 0} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -452,7 +386,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 000000001e43000020430000224300002443000026430000284300002a430000 + m_ExpandedIDs: 000000002a4300002c4300002e43000030430000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -480,23 +414,23 @@ MonoBehaviour: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 m_HadKeyboardFocusLastEvent: 1 - m_ExpandedInstanceIDs: 18190000 + m_ExpandedInstanceIDs: c6230000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: Standart - m_OriginalName: Standart + m_Name: + m_OriginalName: m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 17368 + m_UserData: 0 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 0 + m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 8} + m_ClientGUIView: {fileID: 0} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -505,9 +439,46 @@ MonoBehaviour: m_ResourceFile: m_NewAssetIndexInList: -1 m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 16 + m_GridSize: 64 m_SkipHiddenPackages: 0 - m_DirectoriesAreaWidth: 110 + m_DirectoriesAreaWidth: 115 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1531 + y: 73 + width: 388 + height: 926 + m_ViewDataDictionary: {fileID: 0} + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_PreviewResizer: + m_CachedPref: 160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 + m_GlobalObjectId: + m_LockTracker: + m_IsLocked: 0 + m_PreviewWindow: {fileID: 0} --- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 @@ -517,86 +488,51 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Game - m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Hierarchy + m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 x: 0 - y: 294.4 - width: 826.2 - height: 489.2 + y: 73 + width: 378 + height: 552 m_ViewDataDictionary: {fileID: 0} - m_SerializedViewNames: [] - m_SerializedViewValues: [] - m_PlayModeViewName: GameView - m_ShowGizmos: 0 - m_TargetDisplay: 0 - m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1920, y: 1080} - m_TextureFilterMode: 0 - m_TextureHideFlags: 61 - m_RenderIMGUI: 1 - m_MaximizeOnPlay: 0 - m_UseMipMap: 0 - m_VSyncEnabled: 0 - m_Gizmos: 0 - m_Stats: 0 - m_SelectedSizes: 00000000000000000000000006000000000000000000000000000000000000000000000000000000 - m_ZoomArea: - m_HRangeLocked: 0 - m_VRangeLocked: 0 - hZoomLockedByDefault: 0 - vZoomLockedByDefault: 0 - m_HBaseRangeMin: -768 - m_HBaseRangeMax: 768 - m_VBaseRangeMin: -432 - m_VBaseRangeMax: 432 - m_HAllowExceedBaseRangeMin: 1 - m_HAllowExceedBaseRangeMax: 1 - m_VAllowExceedBaseRangeMin: 1 - m_VAllowExceedBaseRangeMax: 1 - m_ScaleWithWindow: 0 - m_HSlider: 0 - m_VSlider: 0 - m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 1 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 826.2 - height: 468.2 - m_Scale: {x: 0.5378906, y: 0.5378906} - m_Translation: {x: 413.09998, y: 234.09999} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -768 - y: -435.2186 - width: 1536 - height: 870.4372 - m_MinimalGUI: 1 - m_defaultScale: 0.5378906 - m_LastWindowPixelSize: {x: 1032.75, y: 611.5} - m_ClearInEditMode: 1 - m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 00000000000000000000 - m_XRRenderMode: 0 - m_RenderTexture: {fileID: 0} + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 26a3ffffaaa6ffff8ca8ffffdca8ffff5eabffffd8abffffe8abffffdcc8fffffccbffff66ccffff66d6ffff50f3ffffc4f3ffffd0f3ffffdaf3ffff48f4ffff3ef9ffff3efbffff90420000e0550000225b00002c5b0000525c0000905c0000045e0000725e0000925e0000fa5e00005a5f0000746a0000e26a00006a6b00006e710000ec710000dc720000e872000066730000387400005674000020a300009ea3000072a4000090a40000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: PlayerInv + m_OriginalName: PlayerInv + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 29342 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 0 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 4} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: 7ddebfce81a55de4fa6d80ec2c90ba37 --- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 @@ -613,17 +549,17 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Scene - m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 73.6 - width: 826.2 - height: 199.8 + x: 379 + y: 73 + width: 1150 + height: 552 m_ViewDataDictionary: {fileID: 0} m_ShowContextualTools: 0 - m_WindowGUID: d52a7f6dc5db5f8489a3af2606ac8314 + m_WindowGUID: 213a21a418fc89a4580ba18eb8ac69e7 m_Gizmos: 1 m_OverrideSceneCullingMask: 6917529027641081856 m_SceneIsLit: 1 @@ -633,9 +569,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1171.9929, y: 130.32805, z: 7.179158} + m_Target: {x: 0, y: 0, z: 0} speed: 2 - m_Value: {x: 1171.9929, y: 130.32805, z: 7.179158} + m_Value: {x: 0, y: 0, z: 0} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -686,9 +622,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 279.67267 + m_Target: 10 speed: 2 - m_Value: 279.67267 + m_Value: 10 m_Ortho: m_Target: 1 speed: 2 @@ -714,6 +650,120 @@ MonoBehaviour: m_LastLockedObject: {fileID: 0} m_ViewIsLockedToObject: 0 --- !u!114 &17 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Game + m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 379 + y: 73 + width: 1150 + height: 552 + m_ViewDataDictionary: {fileID: 0} + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 1920, y: 1080} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_MaximizeOnPlay: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000006000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -960 + m_HBaseRangeMax: 960 + m_VBaseRangeMin: -540 + m_VBaseRangeMax: 540 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 1150 + height: 531 + m_Scale: {x: 0.4916667, y: 0.49166667} + m_Translation: {x: 575, y: 265.5} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -1169.4915 + y: -540 + width: 2338.983 + height: 1080 + m_MinimalGUI: 1 + m_defaultScale: 0.49166667 + m_LastWindowPixelSize: {x: 1150, y: 552} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 01000001000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} +--- !u!114 &18 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Console + m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 0 + y: 646 + width: 1530 + height: 353 + m_ViewDataDictionary: {fileID: 0} +--- !u!114 &19 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} diff --git a/Library/EditorOnlyScriptingSettings.json b/Library/EditorOnlyScriptingSettings.json index 8de34d9c..bb6c895f 100644 --- a/Library/EditorOnlyScriptingSettings.json +++ b/Library/EditorOnlyScriptingSettings.json @@ -1 +1 @@ -{"m_DefineSymbols":{"m_Value":[],"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":false,"m_Initialized":true}} \ No newline at end of file +{"m_DefineSymbols":{"m_Value":[],"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":true,"m_Initialized":true}} \ No newline at end of file diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 46b1f456..7dfb5b82 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/LastSceneManagerSetup.txt b/Library/LastSceneManagerSetup.txt index 7fa3a17e..4bb0b9b4 100644 --- a/Library/LastSceneManagerSetup.txt +++ b/Library/LastSceneManagerSetup.txt @@ -1,9 +1,9 @@ sceneSetups: - path: Assets/Scenes/DataHolder.unity isLoaded: 1 - isActive: 0 + isActive: 1 isSubScene: 0 - path: Assets/Scenes/MainMenu.unity isLoaded: 1 - isActive: 1 + isActive: 0 isSubScene: 0 diff --git a/Library/PackageManager/ProjectCache b/Library/PackageManager/ProjectCache index 9a376399..f492370a 100644 --- a/Library/PackageManager/ProjectCache +++ b/Library/PackageManager/ProjectCache @@ -1,20 +1,20 @@ m_ProjectFiles: m_ManifestFileStatus: - m_FilePath: C:/Users/Dara/Documents/1/PO/Packages/manifest.json + m_FilePath: "E:/Projects \u0441#/Unity/omega/Packages/manifest.json" m_PathExists: 1 m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637775701382787131 - m_Hash: 1047088217 + ticks: 637777933765572559 + m_Hash: 3969132510 m_LockFileStatus: - m_FilePath: C:/Users/Dara/Documents/1/PO/Packages/packages-lock.json + m_FilePath: "E:/Projects \u0441#/Unity/omega/Packages/packages-lock.json" m_PathExists: 1 m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637775804813421276 - m_Hash: 1522590259 + ticks: 637777933765582533 + m_Hash: 397170090 m_EmbeddedPackageManifests: m_ManifestsStatus: {} m_PackageAssets: @@ -25,7 +25,7 @@ m_PackageAssets: isDirectDependency: 1 version: 5.0.7 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.animation@5.0.7 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.animation@5.0.7" assetPath: Packages/com.unity.2d.animation name: com.unity.2d.animation displayName: 2D Animation @@ -184,7 +184,7 @@ m_PackageAssets: isDirectDependency: 1 version: 4.0.1 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.pixel-perfect@4.0.1 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.pixel-perfect@4.0.1" assetPath: Packages/com.unity.2d.pixel-perfect name: com.unity.2d.pixel-perfect displayName: 2D Pixel Perfect @@ -259,7 +259,7 @@ m_PackageAssets: isDirectDependency: 1 version: 4.1.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.psdimporter@4.1.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.psdimporter@4.1.0" assetPath: Packages/com.unity.2d.psdimporter name: com.unity.2d.psdimporter displayName: 2D PSD Importer @@ -390,7 +390,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.sprite@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.sprite@1.0.0" assetPath: Packages/com.unity.2d.sprite name: com.unity.2d.sprite displayName: 2D Sprite @@ -441,7 +441,7 @@ m_PackageAssets: isDirectDependency: 1 version: 5.1.4 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.spriteshape@5.1.4 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.spriteshape@5.1.4" assetPath: Packages/com.unity.2d.spriteshape name: com.unity.2d.spriteshape displayName: 2D SpriteShape @@ -592,7 +592,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.tilemap@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.tilemap@1.0.0" assetPath: Packages/com.unity.2d.tilemap name: com.unity.2d.tilemap displayName: 2D Tilemap Editor @@ -642,7 +642,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.9.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.collab-proxy@1.9.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.collab-proxy@1.9.0" assetPath: Packages/com.unity.collab-proxy name: com.unity.collab-proxy displayName: Version Control @@ -767,7 +767,7 @@ m_PackageAssets: isDirectDependency: 1 version: 2.0.7 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ide.rider@2.0.7 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.rider@2.0.7" assetPath: Packages/com.unity.ide.rider name: com.unity.ide.rider displayName: JetBrains Rider Editor @@ -878,7 +878,7 @@ m_PackageAssets: isDirectDependency: 1 version: 2.0.11 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ide.visualstudio@2.0.11 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.visualstudio@2.0.11" assetPath: Packages/com.unity.ide.visualstudio name: com.unity.ide.visualstudio displayName: Visual Studio Editor @@ -967,7 +967,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.2.4 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ide.vscode@1.2.4 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.vscode@1.2.4" assetPath: Packages/com.unity.ide.vscode name: com.unity.ide.vscode displayName: Visual Studio Code Editor @@ -1038,7 +1038,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.1.29 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.test-framework@1.1.29 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.test-framework@1.1.29" assetPath: Packages/com.unity.test-framework name: com.unity.test-framework displayName: Test Framework @@ -1131,7 +1131,7 @@ m_PackageAssets: isDirectDependency: 1 version: 3.0.6 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.textmeshpro@3.0.6 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.textmeshpro@3.0.6" assetPath: Packages/com.unity.textmeshpro name: com.unity.textmeshpro displayName: TextMeshPro @@ -1294,7 +1294,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.4.8 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.timeline@1.4.8 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.timeline@1.4.8" assetPath: Packages/com.unity.timeline name: com.unity.timeline displayName: Timeline @@ -1452,7 +1452,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.toolchain.win-x86_64-linux-x86_64@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.toolchain.win-x86_64-linux-x86_64@1.0.0" assetPath: Packages/com.unity.toolchain.win-x86_64-linux-x86_64 name: com.unity.toolchain.win-x86_64-linux-x86_64 displayName: Toolchain Win Linux x64 @@ -1546,7 +1546,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ugui@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ugui@1.0.0" assetPath: Packages/com.unity.ugui name: com.unity.ugui displayName: Unity UI @@ -1609,7 +1609,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.ai@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.ai@1.0.0" assetPath: Packages/com.unity.modules.ai name: com.unity.modules.ai displayName: AI @@ -1657,7 +1657,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.androidjni@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.androidjni@1.0.0" assetPath: Packages/com.unity.modules.androidjni name: com.unity.modules.androidjni displayName: Android JNI @@ -1705,7 +1705,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.animation@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.animation@1.0.0" assetPath: Packages/com.unity.modules.animation name: com.unity.modules.animation displayName: Animation @@ -1753,7 +1753,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.assetbundle@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.assetbundle@1.0.0" assetPath: Packages/com.unity.modules.assetbundle name: com.unity.modules.assetbundle displayName: Asset Bundle @@ -1801,7 +1801,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.audio@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.audio@1.0.0" assetPath: Packages/com.unity.modules.audio name: com.unity.modules.audio displayName: Audio @@ -1849,7 +1849,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.cloth@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.cloth@1.0.0" assetPath: Packages/com.unity.modules.cloth name: com.unity.modules.cloth displayName: Cloth @@ -1901,7 +1901,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.director@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.director@1.0.0" assetPath: Packages/com.unity.modules.director name: com.unity.modules.director displayName: Director @@ -1957,7 +1957,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.imageconversion@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.imageconversion@1.0.0" assetPath: Packages/com.unity.modules.imageconversion name: com.unity.modules.imageconversion displayName: Image Conversion @@ -2006,7 +2006,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.imgui@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.imgui@1.0.0" assetPath: Packages/com.unity.modules.imgui name: com.unity.modules.imgui displayName: IMGUI @@ -2054,7 +2054,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.jsonserialize@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.jsonserialize@1.0.0" assetPath: Packages/com.unity.modules.jsonserialize name: com.unity.modules.jsonserialize displayName: JSONSerialize @@ -2102,7 +2102,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.particlesystem@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.particlesystem@1.0.0" assetPath: Packages/com.unity.modules.particlesystem name: com.unity.modules.particlesystem displayName: Particle System @@ -2150,7 +2150,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.physics@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.physics@1.0.0" assetPath: Packages/com.unity.modules.physics name: com.unity.modules.physics displayName: Physics @@ -2198,7 +2198,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.physics2d@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.physics2d@1.0.0" assetPath: Packages/com.unity.modules.physics2d name: com.unity.modules.physics2d displayName: Physics 2D @@ -2246,7 +2246,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.screencapture@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.screencapture@1.0.0" assetPath: Packages/com.unity.modules.screencapture name: com.unity.modules.screencapture displayName: Screen Capture @@ -2298,7 +2298,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.terrain@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.terrain@1.0.0" assetPath: Packages/com.unity.modules.terrain name: com.unity.modules.terrain displayName: Terrain @@ -2346,7 +2346,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.terrainphysics@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.terrainphysics@1.0.0" assetPath: Packages/com.unity.modules.terrainphysics name: com.unity.modules.terrainphysics displayName: Terrain Physics @@ -2402,7 +2402,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.tilemap@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.tilemap@1.0.0" assetPath: Packages/com.unity.modules.tilemap name: com.unity.modules.tilemap displayName: Tilemap @@ -2454,7 +2454,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.ui@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.ui@1.0.0" assetPath: Packages/com.unity.modules.ui name: com.unity.modules.ui displayName: UI @@ -2502,7 +2502,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.uielements@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.uielements@1.0.0" assetPath: Packages/com.unity.modules.uielements name: com.unity.modules.uielements displayName: UIElements @@ -2566,7 +2566,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.umbra@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.umbra@1.0.0" assetPath: Packages/com.unity.modules.umbra name: com.unity.modules.umbra displayName: Umbra @@ -2614,7 +2614,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unityanalytics@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unityanalytics@1.0.0" assetPath: Packages/com.unity.modules.unityanalytics name: com.unity.modules.unityanalytics displayName: Unity Analytics @@ -2670,7 +2670,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unitywebrequest@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequest@1.0.0" assetPath: Packages/com.unity.modules.unitywebrequest name: com.unity.modules.unitywebrequest displayName: Unity Web Request @@ -2718,7 +2718,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unitywebrequestassetbundle@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestassetbundle@1.0.0" assetPath: Packages/com.unity.modules.unitywebrequestassetbundle name: com.unity.modules.unitywebrequestassetbundle displayName: Unity Web Request Asset Bundle @@ -2774,7 +2774,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unitywebrequestaudio@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestaudio@1.0.0" assetPath: Packages/com.unity.modules.unitywebrequestaudio name: com.unity.modules.unitywebrequestaudio displayName: Unity Web Request Audio @@ -2830,7 +2830,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unitywebrequesttexture@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequesttexture@1.0.0" assetPath: Packages/com.unity.modules.unitywebrequesttexture name: com.unity.modules.unitywebrequesttexture displayName: Unity Web Request Texture @@ -2886,7 +2886,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.unitywebrequestwww@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestwww@1.0.0" assetPath: Packages/com.unity.modules.unitywebrequestwww name: com.unity.modules.unitywebrequestwww displayName: Unity Web Request WWW @@ -2958,7 +2958,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.vehicles@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.vehicles@1.0.0" assetPath: Packages/com.unity.modules.vehicles name: com.unity.modules.vehicles displayName: Vehicles @@ -3010,7 +3010,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.video@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.video@1.0.0" assetPath: Packages/com.unity.modules.video name: com.unity.modules.video displayName: Video @@ -3070,7 +3070,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.vr@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.vr@1.0.0" assetPath: Packages/com.unity.modules.vr name: com.unity.modules.vr displayName: VR @@ -3132,7 +3132,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.wind@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.wind@1.0.0" assetPath: Packages/com.unity.modules.wind name: com.unity.modules.wind displayName: Wind @@ -3180,7 +3180,7 @@ m_PackageAssets: isDirectDependency: 1 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.xr@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.xr@1.0.0" assetPath: Packages/com.unity.modules.xr name: com.unity.modules.xr displayName: XR @@ -3240,7 +3240,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.subsystems@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.subsystems@1.0.0" assetPath: Packages/com.unity.modules.subsystems name: com.unity.modules.subsystems displayName: Subsystems @@ -3292,7 +3292,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.0.0 source: 2 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.modules.uielementsnative@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.uielementsnative@1.0.0" assetPath: Packages/com.unity.modules.uielementsnative name: com.unity.modules.uielementsnative displayName: UIElements Native @@ -3351,7 +3351,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.0.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.sysroot@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.sysroot@1.0.0" assetPath: Packages/com.unity.sysroot name: com.unity.sysroot displayName: Sysroot Base @@ -3426,7 +3426,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.0.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.sysroot.linux-x86_64@1.0.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.sysroot.linux-x86_64@1.0.0" assetPath: Packages/com.unity.sysroot.linux-x86_64 name: com.unity.sysroot.linux-x86_64 displayName: Sysroot Linux x64 @@ -3500,7 +3500,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.0.6 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ext.nunit@1.0.6 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ext.nunit@1.0.6" assetPath: Packages/com.unity.ext.nunit name: com.unity.ext.nunit displayName: Custom NUnit @@ -3516,18 +3516,8 @@ m_PackageAssets: errors: [] versions: all: - - 0.1.5-preview - - 0.1.6-preview - - 0.1.9-preview - - 1.0.0 - - 1.0.5 - 1.0.6 compatible: - - 0.1.5-preview - - 0.1.6-preview - - 0.1.9-preview - - 1.0.0 - - 1.0.5 - 1.0.6 verified: 1.0.6 dependencies: [] @@ -3548,7 +3538,7 @@ m_PackageAssets: entitlements: isAllowed: 1 isAssetStorePackage: 0 - datePublishedTicks: 637429759280000000 + datePublishedTicks: 0 documentationUrl: hasRepository: 1 repository: @@ -3561,7 +3551,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.1.0 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.mathematics@1.1.0 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.mathematics@1.1.0" assetPath: Packages/com.unity.mathematics name: com.unity.mathematics displayName: Mathematics @@ -3577,40 +3567,12 @@ m_PackageAssets: errors: [] versions: all: - - 0.0.12-preview.2 - - 0.0.12-preview.5 - - 0.0.12-preview.8 - - 0.0.12-preview.10 - - 0.0.12-preview.11 - - 0.0.12-preview.13 - - 0.0.12-preview.17 - - 0.0.12-preview.19 - - 0.0.12-preview.20 - - 1.0.0-preview.1 - - 1.0.1 - - 1.1.0-preview.1 - 1.1.0 - 1.2.1 - - 1.2.4 - - 1.2.5 compatible: - - 0.0.12-preview.2 - - 0.0.12-preview.5 - - 0.0.12-preview.8 - - 0.0.12-preview.10 - - 0.0.12-preview.11 - - 0.0.12-preview.13 - - 0.0.12-preview.17 - - 0.0.12-preview.19 - - 0.0.12-preview.20 - - 1.0.0-preview.1 - - 1.0.1 - - 1.1.0-preview.1 - 1.1.0 - 1.2.1 - - 1.2.4 - - 1.2.5 - verified: 1.2.5 + verified: 1.2.1 dependencies: [] resolvedDependencies: [] keywords: @@ -3627,7 +3589,7 @@ m_PackageAssets: entitlements: isAllowed: 1 isAssetStorePackage: 0 - datePublishedTicks: 636984649280000000 + datePublishedTicks: 0 documentationUrl: hasRepository: 1 repository: @@ -3640,7 +3602,7 @@ m_PackageAssets: isDirectDependency: 0 version: 4.0.3 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.common@4.0.3 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.common@4.0.3" assetPath: Packages/com.unity.2d.common name: com.unity.2d.common displayName: 2D Common @@ -3672,6 +3634,7 @@ m_PackageAssets: - 4.0.1 - 4.0.2 - 4.0.3 + - 4.0.4 - 5.0.0-pre.1 - 5.0.0-pre.2 - 5.0.0 @@ -3680,10 +3643,13 @@ m_PackageAssets: - 6.0.0-pre.4 - 6.0.0 - 6.0.1 + - 6.0.2 - 7.0.0-pre.3 + - 7.0.0-pre.4 compatible: - 4.0.3 - verified: 4.0.3 + - 4.0.4 + verified: 4.0.4 dependencies: - name: com.unity.2d.sprite version: 1.0.0 @@ -3729,7 +3695,7 @@ m_PackageAssets: isDirectDependency: 0 version: 4.0.2 source: 1 - resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.path@4.0.2 + resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.path@4.0.2" assetPath: Packages/com.unity.2d.path name: com.unity.2d.path displayName: 2D Path @@ -3795,5 +3761,5 @@ m_PackageAssets: path: m_LocalPackages: m_LocalFileStatus: [] -m_ProjectPath: C:/Users/Dara/Documents/1/PO/Packages +m_ProjectPath: "E:/Projects \u0441#/Unity/omega/Packages" m_EditorVersion: 2020.3.19f1 (68f137dc9bbe) diff --git a/Library/PackageManager/ProjectCache.md5 b/Library/PackageManager/ProjectCache.md5 index 755ead5d..da660c77 100644 --- a/Library/PackageManager/ProjectCache.md5 +++ b/Library/PackageManager/ProjectCache.md5 @@ -1 +1 @@ -41bc876834200554b9cdf46ac8dbc2f9 \ No newline at end of file +f5e98bd93cbb082bc13febd9deb805dc \ No newline at end of file diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 7c810d03..8e9371ba 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 8d8ef497..64340afe 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index c60e1ed3..46fcfc18 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/ScriptAssemblies/PsdPlugin.dll b/Library/ScriptAssemblies/PsdPlugin.dll index efe9b3c1..caccf778 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.dll and b/Library/ScriptAssemblies/PsdPlugin.dll differ diff --git a/Library/ScriptAssemblies/PsdPlugin.pdb b/Library/ScriptAssemblies/PsdPlugin.pdb index 41078b3b..3015e624 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.pdb and b/Library/ScriptAssemblies/PsdPlugin.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll index 9a9860a0..e8d6ee55 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb index aaf20678..b5a4ff48 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll index 0d1e8c7a..13646553 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb index 431430fe..b7748483 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll index cbddc330..06a4fb89 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb index 4a3b2ec9..5e00a230 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll index c0a71888..b5300c60 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb index ed3e42b4..24e96659 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll index e537c3f5..769c9658 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb index 0068b4f6..fd981d76 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll index 4f51206a..93f027c5 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb index eb9b2b8c..382cdc0d 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll index 47b8a95f..f51d4ad3 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb index 6c66609a..ad95dd7d 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll index 59b93246..23140a8a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb index bd38990a..95263046 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll index 539702b1..d690c2e4 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb index d3e739fb..4470203f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll index e34160df..d9e38d7d 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb index b36734b9..529136cd 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll index 4c7ff78e..027c77c5 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb index dda1e006..33b22cd2 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index 986af2b2..ba25b4fd 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb index 5551d301..7c605749 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll index e13a4767..f7f8290d 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb index 31c5057f..bc6604aa 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll index 4d13137f..de13f797 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb index a84b8167..a3b570f1 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index a3d4f97e..e75c56a3 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb index f1f0272c..8ea57389 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index c351c94d..abba4ca1 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb index 77fc49ba..cccc760a 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll index 714428ec..6558774f 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb index 657be309..2757fc4a 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll index 5fd43353..bc4a2c32 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb index 4d470f11..5d999ac0 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll index d4124b93..61d74a6a 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb index 4c81a72b..55e4fbbf 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.dll b/Library/ScriptAssemblies/Unity.Mathematics.dll index 7be0cbc6..19086d44 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.dll and b/Library/ScriptAssemblies/Unity.Mathematics.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.pdb b/Library/ScriptAssemblies/Unity.Mathematics.pdb index b2a27d09..43973a94 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.pdb differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll index 0889bb47..19bf2cb3 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb index b5cae5d8..1a71296d 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/Library/ScriptAssemblies/Unity.Rider.Editor.dll index a349f10d..4378824b 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb index caa4b7f1..a00ea0f8 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb and b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll index f8ff5c4f..47d41cbd 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb index 5e1bac6b..24b2484c 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll index 7bb6cdd8..3829f3af 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb index 055d5467..f82e8310 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index 0cdf1e6f..8972f862 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb index a39a2c3e..ba004d41 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.dll index 76563113..718b1f57 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb index db6662f0..2b1177c5 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index ee0e0c2c..dafb03d3 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb index 70e6007f..eba91639 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb and b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.dll b/Library/ScriptAssemblies/Unity.Timeline.dll index 8ff5034c..03f5b267 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.dll and b/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.pdb b/Library/ScriptAssemblies/Unity.Timeline.pdb index 683fa594..d8230e52 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.pdb and b/Library/ScriptAssemblies/Unity.Timeline.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll index e6d8f32b..4cc384dc 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb index 8f8d2bf6..51fde0d7 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index a0278ea8..b25285b4 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb index 3d4b6ac2..9a1936e6 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb and b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll index bb58ff1a..fd535a73 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb index 9e9f81eb..e4087d7a 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index 813588ed..651b718a 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb index ad67e538..0e815e8b 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.dll b/Library/ScriptAssemblies/UnityEditor.UI.dll index 7bfa46c9..fbd9c617 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.dll and b/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.pdb b/Library/ScriptAssemblies/UnityEditor.UI.pdb index 161f8d02..8db16baf 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.pdb and b/Library/ScriptAssemblies/UnityEditor.UI.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index 34f7663c..038c1e87 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb index 83c0f22c..eee59eec 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.dll b/Library/ScriptAssemblies/UnityEngine.UI.dll index 6476367a..6d593645 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.dll and b/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.pdb b/Library/ScriptAssemblies/UnityEngine.UI.pdb index f2c20575..d483b22a 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.pdb and b/Library/ScriptAssemblies/UnityEngine.UI.pdb differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index 57e9dfc4..bbc8b220 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt index 3105fdc5..e238539c 100644 --- a/Logs/ApiUpdaterCheck.txt +++ b/Logs/ApiUpdaterCheck.txt @@ -688,3 +688,43 @@ C# parse time : 144ms candidates check time : 23ms console write time : 0ms +[api-updater (non-obsolete-error-filter)] 17.01.2022 21:50:36 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 243,7047ms +moved types parse time: 38ms +candidates parse time : 8ms +C# parse time : 159ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 21:51:00 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 58,8447ms +moved types parse time: 37ms +candidates parse time : 8ms +C# parse time : 108ms +candidates check time : 29ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 21:51:04 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 48,9094ms +moved types parse time: 38ms +candidates parse time : 8ms +C# parse time : 112ms +candidates check time : 33ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 21:51:11 : Starting C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe +[api-updater (non-obsolete-error-filter)] +---------------------------------- +jit/startup time : 47,8761ms +moved types parse time: 44ms +candidates parse time : 8ms +C# parse time : 113ms +candidates check time : 20ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log new file mode 100644 index 00000000..ed16f94a --- /dev/null +++ b/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,978 @@ +Using pre-set license +Built from '2020.3/staging' branch; Version is '2020.3.19f1 (68f137dc9bbe) revision 6877495'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 19043.1415; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +E:/Projects Ñ#/Unity/omega +-logFile +Logs/AssetImportWorker0.log +-srvPort +52099 +Successfully changed project path to: E:/Projects Ñ#/Unity/omega +E:/Projects Ñ#/Unity/omega +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 32.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2020.3.19f1 (68f137dc9bbe) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path E:/Projects Ñ#/Unity/omega/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.0] + Renderer: NVIDIA GeForce GT 730 (ID=0x1287) + Vendor: + VRAM: 984 MB + Driver: 30.0.14.7212 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56572 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.001349 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 33.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.596 seconds +Domain Reload Profiling: + ReloadAssembly (1596ms) + BeginReloadAssembly (41ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (322ms) + LoadAssemblies (39ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (104ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (25ms) + SetupLoadedEditorAssemblies (138ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (34ms) + BeforeProcessingInitializeOnLoad (13ms) + ProcessInitializeOnLoadAttributes (66ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.001439 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 36.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.865 seconds +Domain Reload Profiling: + ReloadAssembly (866ms) + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (15ms) + EndReloadAssembly (702ms) + LoadAssemblies (73ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (212ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (36ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.03 seconds +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2133 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 96.1 MB. +System memory in use after: 96.1 MB. + +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2573. +Total: 2.052100 ms (FindLiveObjects: 0.135200 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.810400 ms DeleteObjects: 0.060600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + path: Assets/Scripts/Configs + artifactKey: Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs using Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee0ede7d3d1e8288bf6e1c9db58df68f') in 0.003209 seconds + Import took 0.006128 seconds . + +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 13 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 52.7 MB. +System memory in use after: 52.8 MB. + +Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 2573. +Total: 2.116400 ms (FindLiveObjects: 0.168200 ms CreateObjectMapping: 0.059600 ms MarkObjects: 1.853900 ms DeleteObjects: 0.034000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 18.211120 seconds. + path: Assets/Scripts/Configs/MissionConfig.cs + artifactKey: Guid(c912d3615048b3c4e9c6d0cf942bb4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/MissionConfig.cs using Guid(c912d3615048b3c4e9c6d0cf942bb4db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f74660bfc5b8b11700cdf1d8363edc0') in 0.013472 seconds + Import took 0.015948 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001238 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.800 seconds +Domain Reload Profiling: + ReloadAssembly (800ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (659ms) + LoadAssemblies (74ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (211ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2575. +Total: 1.987600 ms (FindLiveObjects: 0.122500 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.806600 ms DeleteObjects: 0.015500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001185 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.758 seconds +Domain Reload Profiling: + ReloadAssembly (759ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (621ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (190ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.2 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2577. +Total: 2.152400 ms (FindLiveObjects: 0.114100 ms CreateObjectMapping: 0.041700 ms MarkObjects: 1.957700 ms DeleteObjects: 0.038200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001320 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.754 seconds +Domain Reload Profiling: + ReloadAssembly (754ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (616ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2579. +Total: 2.172600 ms (FindLiveObjects: 0.144400 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.967400 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001288 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (789ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (647ms) + LoadAssemblies (73ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. +Total: 2.319200 ms (FindLiveObjects: 0.139600 ms CreateObjectMapping: 0.056100 ms MarkObjects: 2.094900 ms DeleteObjects: 0.027800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001338 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.775 seconds +Domain Reload Profiling: + ReloadAssembly (776ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (638ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 2.274200 ms (FindLiveObjects: 0.124700 ms CreateObjectMapping: 0.054500 ms MarkObjects: 2.081000 ms DeleteObjects: 0.013200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001253 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (789ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (647ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. +Total: 2.107200 ms (FindLiveObjects: 0.122600 ms CreateObjectMapping: 0.044900 ms MarkObjects: 1.924200 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 523.186911 seconds. + path: Assets/Scenes/DataHolder.unity + artifactKey: Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/DataHolder.unity using Guid(a1d610a806711c147adee1d91fe7b53c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a00b664727d34fe3f6de27e382d3473b') in 0.011817 seconds + Import took 0.014202 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.114005 seconds. + path: Assets/Scenes/BattleScene.unity + artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/BattleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e454978d7c62ac975b42d7ba93d4caa') in 0.001523 seconds + Import took 0.003927 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001186 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.707 seconds +Domain Reload Profiling: + ReloadAssembly (707ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (579ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. +Total: 2.033100 ms (FindLiveObjects: 0.119200 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.858400 ms DeleteObjects: 0.012900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001130 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.752 seconds +Domain Reload Profiling: + ReloadAssembly (752ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (618ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. +Total: 2.075500 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.893900 ms DeleteObjects: 0.014700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001267 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.792 seconds +Domain Reload Profiling: + ReloadAssembly (792ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (656ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2114 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. +Total: 2.274000 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.084000 ms DeleteObjects: 0.015500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 263.561933 seconds. + path: Assets/Scripts/Inventory/AddEquipment.cs + artifactKey: Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/AddEquipment.cs using Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85183e42ed02db61e722fb44cf655fa8') in 0.004782 seconds + Import took 0.008098 seconds . + +======================================================================== +Received Import Request. + Time since last request: 24.648461 seconds. + path: Assets/Scripts/Inventory/EquipmentButton.cs + artifactKey: Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/EquipmentButton.cs using Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bdaaec8279e46af21337654cac514dfc') in 0.001091 seconds + Import took 0.003731 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.094910 seconds. + path: Assets/Scripts/Inventory/EquipmentInfo.cs + artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a98876c67cad371df985ddd74743914d') in 0.005741 seconds + Import took 0.008257 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.791811 seconds. + path: Assets/Scripts/Inventory/Inventory.cs + artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/Inventory.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56187b84a2d0c1ae9894427ee53b3908') in 0.001042 seconds + Import took 0.003565 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.990371 seconds. + path: Assets/Scripts/Inventory/PlaceEquipment.cs + artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42ac4f8240cd51027d83dba59a9145da') in 0.001224 seconds + Import took 0.003781 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001146 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.732 seconds +Domain Reload Profiling: + ReloadAssembly (732ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (604ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2119 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. +Total: 1.928800 ms (FindLiveObjects: 0.118800 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.753100 ms DeleteObjects: 0.013700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001149 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.723 seconds +Domain Reload Profiling: + ReloadAssembly (723ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (607ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. +Total: 2.173000 ms (FindLiveObjects: 0.117800 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.751600 ms DeleteObjects: 0.261400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001232 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.767 seconds +Domain Reload Profiling: + ReloadAssembly (767ms) + BeginReloadAssembly (77ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (648ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 2.728700 ms (FindLiveObjects: 0.143500 ms CreateObjectMapping: 0.052000 ms MarkObjects: 2.489200 ms DeleteObjects: 0.030500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001224 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.772 seconds +Domain Reload Profiling: + ReloadAssembly (773ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (645ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 2.360300 ms (FindLiveObjects: 0.137400 ms CreateObjectMapping: 0.049800 ms MarkObjects: 2.153700 ms DeleteObjects: 0.018000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 53bbe0b7..52ea4887 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -1,6 +1,6 @@ Using pre-set license Built from '2020.3/staging' branch; Version is '2020.3.19f1 (68f137dc9bbe) revision 6877495'; Using compiler version '192528614'; Build Type 'Release' -OS: 'Windows 10 Home; OS build 19043.1466; Version 2009; 64bit' Language: 'ru' Physical Memory: 8029 MB +OS: 'Windows 10 Pro; OS build 19043.1415; Version 2009; 64bit' Language: 'ru' Physical Memory: 32637 MB BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 COMMAND LINE ARGUMENTS: @@ -11,122 +11,113 @@ C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe -name AssetImportWorker0 -projectPath -C:/Users/Dara/Documents/1/PO +E:/Projects Ñ#/Unity/omega -logFile Logs/AssetImportWorker0.log -srvPort -58344 -Successfully changed project path to: C:/Users/Dara/Documents/1/PO -C:/Users/Dara/Documents/1/PO +57592 +Successfully changed project path to: E:/Projects Ñ#/Unity/omega +E:/Projects Ñ#/Unity/omega Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 56.49 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 28.89 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2020.3.19f1 (68f137dc9bbe) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path C:/Users/Dara/Documents/1/PO/Assets +[Subsystems] Discovering subsystems at path E:/Projects Ñ#/Unity/omega/Assets GfxDevice: creating device client; threaded=0 Direct3D: - Version: Direct3D 11.0 [level 11.1] - Renderer: NVIDIA GeForce GTX 1650 (ID=0x1f99) + Version: Direct3D 11.0 [level 11.0] + Renderer: NVIDIA GeForce GT 730 (ID=0x1287) Vendor: - VRAM: 3962 MB - Driver: 30.0.14.9709 + VRAM: 984 MB + Driver: 30.0.14.7212 Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56504 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56144 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... -Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll -Registered in 0.002607 seconds. -Native extension for LinuxStandalone target not found +Registered in 0.001215 seconds. Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 41.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 33.82 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.202 seconds +- Completed reload, in 1.546 seconds Domain Reload Profiling: - ReloadAssembly (1203ms) - BeginReloadAssembly (50ms) + ReloadAssembly (1546ms) + BeginReloadAssembly (39ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (431ms) - LoadAssemblies (48ms) + EndReloadAssembly (321ms) + LoadAssemblies (38ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (142ms) + SetupTypeCache (99ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (26ms) - SetupLoadedEditorAssemblies (195ms) + RebuildScriptCaches (28ms) + SetupLoadedEditorAssemblies (139ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (41ms) - BeforeProcessingInitializeOnLoad (14ms) - ProcessInitializeOnLoadAttributes (67ms) - ProcessInitializeOnLoadMethodAttributes (66ms) + RefreshPlugins (34ms) + BeforeProcessingInitializeOnLoad (13ms) + ProcessInitializeOnLoadAttributes (69ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002517 seconds. +Registered in 0.001337 seconds. Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 40.44 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 29.81 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.081 seconds +- Completed reload, in 0.798 seconds Domain Reload Profiling: - ReloadAssembly (1081ms) - BeginReloadAssembly (121ms) + ReloadAssembly (799ms) + BeginReloadAssembly (113ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (15ms) - EndReloadAssembly (906ms) - LoadAssemblies (76ms) + CreateAndSetChildDomain (16ms) + EndReloadAssembly (641ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (320ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (319ms) + SetupTypeCache (196ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (265ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (40ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (186ms) + RefreshPlugins (30ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (158ms) ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) + AwakeInstancesAfterBackupRestoration (5ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds -Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2139 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 96.2 MB. System memory in use after: 96.3 MB. Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2579. -Total: 3.737800 ms (FindLiveObjects: 0.489100 ms CreateObjectMapping: 0.175800 ms MarkObjects: 2.971200 ms DeleteObjects: 0.100400 ms) +Total: 2.331100 ms (FindLiveObjects: 0.140300 ms CreateObjectMapping: 0.061200 ms MarkObjects: 2.054700 ms DeleteObjects: 0.073500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -139,439 +130,3172 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - path: Assets/Prefabs/Enemy - artifactKey: Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy using Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20f916880fa24b6f45793fa9bc0b3014') in 0.013101 seconds - Import took 0.018578 seconds . +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001231 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.733 seconds +Domain Reload Profiling: + ReloadAssembly (735ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (592ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.4 MB. +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. +Total: 1.902400 ms (FindLiveObjects: 0.118400 ms CreateObjectMapping: 0.038500 ms MarkObjects: 1.731700 ms DeleteObjects: 0.012800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 0.000292 seconds. - path: Assets/Graphics/Enemies - artifactKey: Guid(c78039bbf1fa6714b9de78e3b4877c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies using Guid(c78039bbf1fa6714b9de78e3b4877c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd963f06b12c518a16263330e95983f6') in 0.007837 seconds - Import took 0.012663 seconds . - -======================================================================== -Received Import Request. - Time since last request: 23.897902 seconds. - path: Assets/Graphics/Enemies/изображение_2022-01-16_221746.png - artifactKey: Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/изображение_2022-01-16_221746.png using Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8403e76c0f712a9f782e72dda39933e2') in 0.119904 seconds - Import took 0.124345 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.157540 seconds. - path: Assets/Graphics/Enemies/Golems.png - artifactKey: Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Golems.png using Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '440f42e2fa85d555fa214f542c8d9844') in 0.028774 seconds - Import took 0.032636 seconds . - -======================================================================== -Received Import Request. - Time since last request: 81.876525 seconds. - path: Assets/Graphics/Enemies/Golems.png - artifactKey: Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Golems.png using Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60453883c693865b2c6c793dd9466496') in 0.023513 seconds - Import took 0.033178 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.359392 seconds. - path: Assets/Graphics/Enemies/Golems.png - artifactKey: Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Golems.png using Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd36016e09a19d9ecfa954bd41331f77f') in 0.015863 seconds - Import took 0.022666 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.801278 seconds. - path: Assets/Graphics/Enemies/Golems.png - artifactKey: Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Golems.png using Guid(86bbbf411a3948c4b9800a4c94a68d2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4355bdd1ad570b17b25900c99ace96c0') in 0.037581 seconds - Import took 0.042763 seconds . - -======================================================================== -Received Import Request. - Time since last request: 29.659902 seconds. - path: Assets/Scripts/Configs/EnemyConfigs - artifactKey: Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs using Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4e2ea28d4d88fdc16eb2bc559d03e2c') in 0.007797 seconds - Import took 0.012124 seconds . - -======================================================================== -Received Import Request. - Time since last request: 49.464169 seconds. - path: Assets/Scripts/Configs/BattleConfig.cs - artifactKey: Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/BattleConfig.cs using Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc7262ac38842d91bfd121f6e5c1b2db') in 0.018939 seconds - Import took 0.024122 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.634050 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6cfbe2cbef25620a0cc7a307bead2bbf') in 0.009115 seconds - Import took 0.013927 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.610647 seconds. - path: Assets/Scripts/Configs/EnemyConfig.cs - artifactKey: Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfig.cs using Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3218f935e604a6c6b195424f91dbb19a') in 0.011368 seconds - Import took 0.018390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.731850 seconds. - path: Assets/Scripts/Configs/EquipmentConfig.cs - artifactKey: Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig.cs using Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c3f313710e9cbd26f3cc9e06988e8c3') in 0.011076 seconds - Import took 0.018632 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.479080 seconds. - path: Assets/Scripts/Configs/PlayerConfig.cs - artifactKey: Guid(4bf4cbb13736ac54f8e9fdca4327535f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/PlayerConfig.cs using Guid(4bf4cbb13736ac54f8e9fdca4327535f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9c657c222777ffab7acc069a30a7de7') in 0.007440 seconds - Import took 0.011849 seconds . - -======================================================================== -Received Import Request. - Time since last request: 63.602659 seconds. - path: Assets/Scripts/Configs/PlayerConfig.cs - artifactKey: Guid(4bf4cbb13736ac54f8e9fdca4327535f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/PlayerConfig.cs using Guid(4bf4cbb13736ac54f8e9fdca4327535f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95f1e67847e98150b0b55a976e0d537d') in 0.011304 seconds - Import took 0.018224 seconds . + path: Assets/Scripts/Inventory/Inventory.cs + artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/Inventory.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '179de568c5b1776151f849b699828c66') in 0.015719 seconds + Import took 0.018191 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004271 seconds. +Registered in 0.001287 seconds. Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.018 seconds +- Completed reload, in 0.725 seconds Domain Reload Profiling: - ReloadAssembly (1018ms) - BeginReloadAssembly (149ms) + ReloadAssembly (725ms) + BeginReloadAssembly (80ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (603ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 3.598900 ms (FindLiveObjects: 0.248500 ms CreateObjectMapping: 0.045600 ms MarkObjects: 3.269000 ms DeleteObjects: 0.034900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001286 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.770 seconds +Domain Reload Profiling: + ReloadAssembly (771ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (633ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. +Total: 2.019500 ms (FindLiveObjects: 0.127800 ms CreateObjectMapping: 0.047800 ms MarkObjects: 1.829500 ms DeleteObjects: 0.013500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001280 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.778 seconds +Domain Reload Profiling: + ReloadAssembly (778ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (34ms) - EndReloadAssembly (807ms) - LoadAssemblies (133ms) + EndReloadAssembly (641ms) + LoadAssemblies (61ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (260ms) + SetupTypeCache (194ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (81ms) - SetupLoadedEditorAssemblies (267ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (251ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (74ms) + BeforeProcessingInitializeOnLoad (62ms) ProcessInitializeOnLoadAttributes (176ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. +Total: 2.002800 ms (FindLiveObjects: 0.133500 ms CreateObjectMapping: 0.048700 ms MarkObjects: 1.805100 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001183 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.754 seconds +Domain Reload Profiling: + ReloadAssembly (755ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (623ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. +Total: 1.964400 ms (FindLiveObjects: 0.122800 ms CreateObjectMapping: 0.046500 ms MarkObjects: 1.779900 ms DeleteObjects: 0.014000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001196 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.787 seconds +Domain Reload Profiling: + ReloadAssembly (787ms) + BeginReloadAssembly (94ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (649ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (200ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. +Total: 2.391500 ms (FindLiveObjects: 0.138200 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.168000 ms DeleteObjects: 0.036800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001285 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.743 seconds +Domain Reload Profiling: + ReloadAssembly (743ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (615ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2593. +Total: 2.137400 ms (FindLiveObjects: 0.163200 ms CreateObjectMapping: 0.067900 ms MarkObjects: 1.890300 ms DeleteObjects: 0.015100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001147 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.724 seconds +Domain Reload Profiling: + ReloadAssembly (724ms) + BeginReloadAssembly (79ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (605ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2595. +Total: 1.896500 ms (FindLiveObjects: 0.119800 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.719200 ms DeleteObjects: 0.012600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 840.988670 seconds. + path: Assets/Scripts/Inventory/SpawnButton.cs + artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '327e559744096aeabe665250ccd53139') in 0.005185 seconds + Import took 0.008055 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001368 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.783 seconds +Domain Reload Profiling: + ReloadAssembly (784ms) + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (643ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (193ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. +Total: 2.260200 ms (FindLiveObjects: 0.127600 ms CreateObjectMapping: 0.043000 ms MarkObjects: 2.075700 ms DeleteObjects: 0.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001244 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.774 seconds +Domain Reload Profiling: + ReloadAssembly (774ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (638ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (201ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. +Total: 2.171000 ms (FindLiveObjects: 0.116900 ms CreateObjectMapping: 0.045300 ms MarkObjects: 1.995100 ms DeleteObjects: 0.013000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001327 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.757 seconds +Domain Reload Profiling: + ReloadAssembly (758ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (627ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (172ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. +Total: 1.981000 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.042600 ms MarkObjects: 1.783800 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001334 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.778 seconds +Domain Reload Profiling: + ReloadAssembly (778ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (640ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (184ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 2.204500 ms (FindLiveObjects: 0.148700 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.983900 ms DeleteObjects: 0.017800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 158.604231 seconds. + path: Assets/Scripts/Inventory/SpawnButton.cs + artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cf50b02db944104c3bf864fd10d0aa8') in 0.003371 seconds + Import took 0.005946 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.260765 seconds. + path: Assets/Scripts/Inventory/SpawnButton.cs + artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3bb0819a1705ef3c7173a00bc5c3b38') in 0.001341 seconds + Import took 0.008530 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001778 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.756 seconds +Domain Reload Profiling: + ReloadAssembly (756ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (628ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 1.948900 ms (FindLiveObjects: 0.119000 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.773300 ms DeleteObjects: 0.011900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001276 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.771 seconds +Domain Reload Profiling: + ReloadAssembly (771ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (639ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 2.146300 ms (FindLiveObjects: 0.138300 ms CreateObjectMapping: 0.048400 ms MarkObjects: 1.945400 ms DeleteObjects: 0.013300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 95.987720 seconds. + path: Assets/Scripts/Inventory/SpawnButton.cs + artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e650ac0dee086a9429aec77564c3b7f7') in 0.004276 seconds + Import took 0.007312 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001221 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.780 seconds +Domain Reload Profiling: + ReloadAssembly (780ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (651ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. +Total: 1.942500 ms (FindLiveObjects: 0.130300 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.754600 ms DeleteObjects: 0.012600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001270 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (789ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (656ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. +Total: 2.178500 ms (FindLiveObjects: 0.135300 ms CreateObjectMapping: 0.051200 ms MarkObjects: 1.969700 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001316 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.831 seconds +Domain Reload Profiling: + ReloadAssembly (831ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (698ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. +Total: 2.096200 ms (FindLiveObjects: 0.147400 ms CreateObjectMapping: 0.052800 ms MarkObjects: 1.876400 ms DeleteObjects: 0.017900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001222 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.804 seconds +Domain Reload Profiling: + ReloadAssembly (804ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (673ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (189ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2615. +Total: 2.278800 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.043800 ms MarkObjects: 2.074800 ms DeleteObjects: 0.031300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001290 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.808 seconds +Domain Reload Profiling: + ReloadAssembly (809ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (680ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (197ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2617. +Total: 2.051200 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.872300 ms DeleteObjects: 0.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001323 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.838 seconds +Domain Reload Profiling: + ReloadAssembly (839ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (704ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (193ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2619. +Total: 2.335600 ms (FindLiveObjects: 0.128700 ms CreateObjectMapping: 0.042000 ms MarkObjects: 2.148400 ms DeleteObjects: 0.015700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 342.549566 seconds. + path: Assets/Scripts/Inventory/EquipmentInfo.cs + artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af507d44b2260b0be6eeecd1b42ff9f2') in 0.004141 seconds + Import took 0.007102 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001484 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.813 seconds +Domain Reload Profiling: + ReloadAssembly (814ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (680ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2621. +Total: 2.340300 ms (FindLiveObjects: 0.133700 ms CreateObjectMapping: 0.049300 ms MarkObjects: 2.141700 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001300 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.833 seconds +Domain Reload Profiling: + ReloadAssembly (834ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (694ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (194ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. +Total: 2.304800 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.046500 ms MarkObjects: 2.115600 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001208 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.811 seconds +Domain Reload Profiling: + ReloadAssembly (811ms) + BeginReloadAssembly (86ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (681ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2625. +Total: 2.018900 ms (FindLiveObjects: 0.123600 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.839000 ms DeleteObjects: 0.011000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001295 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.817 seconds +Domain Reload Profiling: + ReloadAssembly (818ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (683ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2627. +Total: 2.188600 ms (FindLiveObjects: 0.141200 ms CreateObjectMapping: 0.060000 ms MarkObjects: 1.957000 ms DeleteObjects: 0.029400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001160 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (789ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (656ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2629. +Total: 1.976500 ms (FindLiveObjects: 0.126900 ms CreateObjectMapping: 0.048300 ms MarkObjects: 1.787000 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001170 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.788 seconds +Domain Reload Profiling: + ReloadAssembly (788ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (662ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2631. +Total: 2.050400 ms (FindLiveObjects: 0.176400 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.802400 ms DeleteObjects: 0.025000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001173 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.804 seconds +Domain Reload Profiling: + ReloadAssembly (804ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (679ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2633. +Total: 2.415100 ms (FindLiveObjects: 0.187200 ms CreateObjectMapping: 0.055900 ms MarkObjects: 2.144100 ms DeleteObjects: 0.026700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001316 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.835 seconds +Domain Reload Profiling: + ReloadAssembly (835ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (709ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2635. +Total: 2.045900 ms (FindLiveObjects: 0.129000 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.858700 ms DeleteObjects: 0.013500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001261 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.817 seconds +Domain Reload Profiling: + ReloadAssembly (817ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (685ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2637. +Total: 2.008600 ms (FindLiveObjects: 0.120600 ms CreateObjectMapping: 0.042000 ms MarkObjects: 1.821200 ms DeleteObjects: 0.024000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001148 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.807 seconds +Domain Reload Profiling: + ReloadAssembly (807ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (685ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (174ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2639. +Total: 2.154800 ms (FindLiveObjects: 0.163500 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.920400 ms DeleteObjects: 0.026000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001220 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.841 seconds +Domain Reload Profiling: + ReloadAssembly (841ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (701ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. +Total: 2.010100 ms (FindLiveObjects: 0.136400 ms CreateObjectMapping: 0.054800 ms MarkObjects: 1.801900 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001118 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.844 seconds +Domain Reload Profiling: + ReloadAssembly (845ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (715ms) + LoadAssemblies (67ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2643. +Total: 2.340500 ms (FindLiveObjects: 0.148200 ms CreateObjectMapping: 0.073700 ms MarkObjects: 2.083500 ms DeleteObjects: 0.026000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001223 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.832 seconds +Domain Reload Profiling: + ReloadAssembly (832ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (705ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. +Total: 2.126100 ms (FindLiveObjects: 0.128500 ms CreateObjectMapping: 0.056100 ms MarkObjects: 1.927200 ms DeleteObjects: 0.013400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001190 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.850 seconds +Domain Reload Profiling: + ReloadAssembly (850ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (717ms) + LoadAssemblies (70ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. +Total: 2.270600 ms (FindLiveObjects: 0.142100 ms CreateObjectMapping: 0.055600 ms MarkObjects: 2.056200 ms DeleteObjects: 0.015900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001676 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.876 seconds +Domain Reload Profiling: + ReloadAssembly (876ms) + BeginReloadAssembly (93ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (742ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2649. +Total: 2.047800 ms (FindLiveObjects: 0.156900 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.825600 ms DeleteObjects: 0.016900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001177 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.860 seconds +Domain Reload Profiling: + ReloadAssembly (860ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (723ms) + LoadAssemblies (61ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2651. +Total: 2.068500 ms (FindLiveObjects: 0.129900 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.879800 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001151 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.844 seconds +Domain Reload Profiling: + ReloadAssembly (844ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (719ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (182ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2653. +Total: 1.998200 ms (FindLiveObjects: 0.127200 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.814700 ms DeleteObjects: 0.013300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001266 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.882 seconds +Domain Reload Profiling: + ReloadAssembly (882ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (741ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. +Total: 2.529700 ms (FindLiveObjects: 0.124500 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.341900 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001152 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.855 seconds +Domain Reload Profiling: + ReloadAssembly (856ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (720ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2657. +Total: 2.051800 ms (FindLiveObjects: 0.128300 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.843300 ms DeleteObjects: 0.026100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002031 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.030 seconds +Domain Reload Profiling: + ReloadAssembly (1031ms) + BeginReloadAssembly (85ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (902ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (232ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. +Total: 2.314100 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.047500 ms MarkObjects: 2.111800 ms DeleteObjects: 0.027300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001150 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.862 seconds +Domain Reload Profiling: + ReloadAssembly (862ms) + BeginReloadAssembly (88ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (732ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (175ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2661. +Total: 2.145100 ms (FindLiveObjects: 0.123400 ms CreateObjectMapping: 0.045900 ms MarkObjects: 1.961600 ms DeleteObjects: 0.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001237 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.895 seconds +Domain Reload Profiling: + ReloadAssembly (895ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (767ms) + LoadAssemblies (55ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2663. +Total: 2.373000 ms (FindLiveObjects: 0.158300 ms CreateObjectMapping: 0.045600 ms MarkObjects: 2.130000 ms DeleteObjects: 0.038100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001188 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.893 seconds +Domain Reload Profiling: + ReloadAssembly (894ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (769ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2665. +Total: 2.096600 ms (FindLiveObjects: 0.158400 ms CreateObjectMapping: 0.041700 ms MarkObjects: 1.882500 ms DeleteObjects: 0.012800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001266 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.879 seconds +Domain Reload Profiling: + ReloadAssembly (879ms) + BeginReloadAssembly (84ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (752ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (178ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2667. +Total: 2.330600 ms (FindLiveObjects: 0.133500 ms CreateObjectMapping: 0.046200 ms MarkObjects: 2.119700 ms DeleteObjects: 0.030200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001278 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.857 seconds +Domain Reload Profiling: + ReloadAssembly (857ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (723ms) + LoadAssemblies (60ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (176ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2669. +Total: 1.960100 ms (FindLiveObjects: 0.124700 ms CreateObjectMapping: 0.042300 ms MarkObjects: 1.780500 ms DeleteObjects: 0.011900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001404 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.882 seconds +Domain Reload Profiling: + ReloadAssembly (882ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (759ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (187ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2671. +Total: 1.987300 ms (FindLiveObjects: 0.139000 ms CreateObjectMapping: 0.054600 ms MarkObjects: 1.780400 ms DeleteObjects: 0.012400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001280 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.904 seconds +Domain Reload Profiling: + ReloadAssembly (904ms) + BeginReloadAssembly (87ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (773ms) + LoadAssemblies (58ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (185ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2673. +Total: 2.105600 ms (FindLiveObjects: 0.142300 ms CreateObjectMapping: 0.047300 ms MarkObjects: 1.897300 ms DeleteObjects: 0.017100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001399 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.939 seconds +Domain Reload Profiling: + ReloadAssembly (939ms) + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (795ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (156ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2675. +Total: 2.255000 ms (FindLiveObjects: 0.142900 ms CreateObjectMapping: 0.042900 ms MarkObjects: 2.053100 ms DeleteObjects: 0.015400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001282 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.903 seconds +Domain Reload Profiling: + ReloadAssembly (903ms) + BeginReloadAssembly (80ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (780ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (188ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2677. +Total: 2.169800 ms (FindLiveObjects: 0.130700 ms CreateObjectMapping: 0.045400 ms MarkObjects: 1.978200 ms DeleteObjects: 0.014300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001204 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.906 seconds +Domain Reload Profiling: + ReloadAssembly (906ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (770ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (186ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2679. +Total: 2.651900 ms (FindLiveObjects: 0.159800 ms CreateObjectMapping: 0.052000 ms MarkObjects: 2.420600 ms DeleteObjects: 0.018200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001283 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.925 seconds +Domain Reload Profiling: + ReloadAssembly (925ms) + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (783ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2681. +Total: 1.985200 ms (FindLiveObjects: 0.126300 ms CreateObjectMapping: 0.042000 ms MarkObjects: 1.803700 ms DeleteObjects: 0.012400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001810 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.917 seconds +Domain Reload Profiling: + ReloadAssembly (917ms) + BeginReloadAssembly (83ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (795ms) + LoadAssemblies (54ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (179ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (39ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2683. +Total: 2.412700 ms (FindLiveObjects: 0.134000 ms CreateObjectMapping: 0.050900 ms MarkObjects: 2.196700 ms DeleteObjects: 0.030000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001549 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.900 seconds +Domain Reload Profiling: + ReloadAssembly (900ms) + BeginReloadAssembly (76ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (784ms) + LoadAssemblies (57ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (191ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2685. +Total: 2.051100 ms (FindLiveObjects: 0.131000 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.859900 ms DeleteObjects: 0.013300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001278 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.919 seconds +Domain Reload Profiling: + ReloadAssembly (919ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (786ms) + LoadAssemblies (65ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (173ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. -Total: 37.353900 ms (FindLiveObjects: 0.393200 ms CreateObjectMapping: 0.893200 ms MarkObjects: 36.041700 ms DeleteObjects: 0.024200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 32.825102 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Mini golem.asset - artifactKey: Guid(8a0f4f7c6d010e34a9d74f16f1f03e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Mini golem.asset using Guid(8a0f4f7c6d010e34a9d74f16f1f03e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2486727e2ca41c87836de7a51dbbf9f4') in 0.027054 seconds - Import took 0.032557 seconds . - -======================================================================== -Received Import Request. - Time since last request: 106.491233 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8edbf75cb22e5f4a472f2e4f140870d5') in 0.057640 seconds - Import took 0.062358 seconds . - -======================================================================== -Received Import Request. - Time since last request: 113.620853 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Mini golem.asset - artifactKey: Guid(8a0f4f7c6d010e34a9d74f16f1f03e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Mini golem.asset using Guid(8a0f4f7c6d010e34a9d74f16f1f03e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1caef7072cc5305fedfa3432961882ff') in 0.003678 seconds - Import took 0.008131 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002519 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.586 seconds -Domain Reload Profiling: - ReloadAssembly (1587ms) - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (61ms) - EndReloadAssembly (1328ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (413ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (71ms) - SetupLoadedEditorAssemblies (520ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (163ms) - ProcessInitializeOnLoadAttributes (327ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2593. -Total: 6.429800 ms (FindLiveObjects: 0.287200 ms CreateObjectMapping: 0.150700 ms MarkObjects: 5.948900 ms DeleteObjects: 0.040300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 121.154820 seconds. - path: Assets/Prefabs/Player - artifactKey: Guid(499a860da62678c44b35ae7850d04c9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Player using Guid(499a860da62678c44b35ae7850d04c9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b960dd464665bf920e1dbf0db8fc4e76') in 0.012931 seconds - Import took 0.016311 seconds . - -======================================================================== -Received Import Request. - Time since last request: 19.686427 seconds. - path: Assets/Prefabs/Equipment - artifactKey: Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment using Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bdae05b6d6166916298a9e639d919e6b') in 0.007624 seconds - Import took 0.011628 seconds . - -======================================================================== -Received Import Request. - Time since last request: 126.623035 seconds. - path: Assets/Prefabs/Cards/BigHealing.prefab - artifactKey: Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/BigHealing.prefab using Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1bed5d9866f971a956fcd5d9600416ef') in 0.042132 seconds - Import took 0.045426 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.481805 seconds. - path: Assets/Prefabs/Cards/Standart - artifactKey: Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart using Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3dff83632a8c4cb0a4dde2c69ad8007') in 0.008615 seconds - Import took 0.013205 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.298118 seconds. - path: Assets/Prefabs/Cards/Standart/Card.prefab - artifactKey: Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart/Card.prefab using Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17969846db60ecac627ff08fb64c04a6') in 0.009355 seconds - Import took 0.013144 seconds . - -======================================================================== -Received Import Request. - Time since last request: 17.455779 seconds. - path: Assets/Prefabs/Enemy/Standart - artifactKey: Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart using Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28a2fb3f27a94be6c57946297a012979') in 0.004517 seconds - Import took 0.008358 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.505891 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da732e141ac59a195106672a35b642b7') in 0.021279 seconds - Import took 0.026309 seconds . - -======================================================================== -Received Import Request. - Time since last request: 51.869804 seconds. - path: Assets/Prefabs/Cards/Standart/Card.prefab - artifactKey: Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart/Card.prefab using Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10ac6259df59dfcbb0c2f39d8a16f615') in 0.007654 seconds - Import took 0.012141 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.126877 seconds. - path: Assets/Prefabs/Cards/SmallHealing.prefab - artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dffa174d9b2b368ef2d7af6725796218') in 0.010375 seconds - Import took 0.014401 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.509497 seconds. - path: Assets/Prefabs/Cards/UltraMegaAttack.prefab - artifactKey: Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/UltraMegaAttack.prefab using Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a5a99cb9a9ad96514c697adc387d872c') in 0.011826 seconds - Import took 0.016968 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.228198 seconds. - path: Assets/Prefabs/Cards/SmallArmor.prefab - artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9bc77727435b4c025c8d610950f74c13') in 0.013397 seconds - Import took 0.019699 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.661227 seconds. - path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab - artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c52d42551815895f087458012c5ec126') in 0.011912 seconds - Import took 0.016227 seconds . - -======================================================================== -Received Import Request. - Time since last request: 15.838135 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6baebb2715a0b0145142b632084de43e') in 0.007799 seconds - Import took 0.012396 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.217736 seconds. - path: Assets/Prefabs/Equipment/Breastplate.prefab - artifactKey: Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Breastplate.prefab using Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41c1d303907139baed5ebd2a4ce6f454') in 0.010778 seconds - Import took 0.014877 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.519879 seconds. - path: Assets/Prefabs/Equipment/Standart - artifactKey: Guid(c3c0114203a68f942bd139f60875b64d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Standart using Guid(c3c0114203a68f942bd139f60875b64d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '609f7169e74e6f7db2bd1c350dc0824d') in 0.003636 seconds - Import took 0.008481 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.196474 seconds. - path: Assets/Prefabs/Equipment/Helmet.prefab - artifactKey: Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Helmet.prefab using Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11eb2053b17821b63c02955b2cd13236') in 0.009750 seconds - Import took 0.014142 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002652 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.022 seconds -Domain Reload Profiling: - ReloadAssembly (1023ms) - BeginReloadAssembly (118ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - EndReloadAssembly (845ms) - LoadAssemblies (83ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (279ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (60ms) - SetupLoadedEditorAssemblies (304ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (92ms) - ProcessInitializeOnLoadAttributes (193ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.6 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2595. -Total: 2.889300 ms (FindLiveObjects: 0.211000 ms CreateObjectMapping: 0.088400 ms MarkObjects: 2.564700 ms DeleteObjects: 0.024100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2687. +Total: 2.008400 ms (FindLiveObjects: 0.148900 ms CreateObjectMapping: 0.042400 ms MarkObjects: 1.791500 ms DeleteObjects: 0.024600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -587,254 +3311,49 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003826 seconds. +Registered in 0.001234 seconds. Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.352 seconds +- Completed reload, in 1.014 seconds Domain Reload Profiling: - ReloadAssembly (1352ms) - BeginReloadAssembly (167ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (60ms) - EndReloadAssembly (1081ms) - LoadAssemblies (146ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (449ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (58ms) - SetupLoadedEditorAssemblies (294ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (185ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. -Total: 3.280100 ms (FindLiveObjects: 0.222500 ms CreateObjectMapping: 0.111800 ms MarkObjects: 2.926200 ms DeleteObjects: 0.018500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 121.980882 seconds. - path: Assets/Graphics/Fonts/Typometry_Regular.ttf - artifactKey: Guid(0009f458d8f0d894bbd76009c07e4224) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Fonts/Typometry_Regular.ttf using Guid(0009f458d8f0d894bbd76009c07e4224) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '97ab1843ab2d9160ed75ee63c665ff96') in 0.085581 seconds - Import took 0.089614 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.262690 seconds. - path: Assets/Graphics/Fonts/Typometry_Alternate.ttf - artifactKey: Guid(b2978ece86db0314a8674f1d72cb1fb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Fonts/Typometry_Alternate.ttf using Guid(b2978ece86db0314a8674f1d72cb1fb9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '99aca1a4ec71e85aaa4192ab6901a4fb') in 0.020189 seconds - Import took 0.024193 seconds . - -======================================================================== -Received Import Request. - Time since last request: 79.646386 seconds. - path: Assets/Prefabs/Cards/AddStamina.prefab - artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20f264463d0760ce55d05891e961c225') in 0.031744 seconds - Import took 0.037725 seconds . - -======================================================================== -Received Import Request. - Time since last request: 14.961647 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89aa4173885442798af7c20330a86a23') in 0.024379 seconds - Import took 0.031012 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.514046 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c41f3ef3e64c3136296b02bcbbaa6b79') in 0.011580 seconds - Import took 0.015291 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.908167 seconds. - path: Assets/Prefabs/Enemy/MiniGolem.prefab - artifactKey: Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/MiniGolem.prefab using Guid(f73491b94287ea54ca01b9c32623daf0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff79c84bee14219cf01084d41fb8cf22') in 0.009366 seconds - Import took 0.013774 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005478 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.787 seconds -Domain Reload Profiling: - ReloadAssembly (1788ms) - BeginReloadAssembly (214ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (1ms) - CreateAndSetChildDomain (81ms) - EndReloadAssembly (1473ms) - LoadAssemblies (164ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (487ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (100ms) - SetupLoadedEditorAssemblies (520ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (139ms) - ProcessInitializeOnLoadAttributes (346ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 97.9 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2641. -Total: 6.478500 ms (FindLiveObjects: 0.576200 ms CreateObjectMapping: 0.308600 ms MarkObjects: 5.551000 ms DeleteObjects: 0.040100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 176.000679 seconds. - path: Assets/Prefabs/Cards/AddStamina.prefab - artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58972d8d2ce4757e29b269518f9ad751') in 0.050904 seconds - Import took 0.056131 seconds . - -======================================================================== -Received Import Request. - Time since last request: 25.606201 seconds. - path: Assets/Prefabs/Cards/UltraMegaAttack.prefab - artifactKey: Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/UltraMegaAttack.prefab using Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '132f1f68b816cd0be74ff1bbacd66c2d') in 0.008184 seconds - Import took 0.012760 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.828682 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c56241fec5b16707955c55e1e480d703') in 0.018545 seconds - Import took 0.024545 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.310882 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56c63963fde297e049643afd7c6a31e0') in 0.008284 seconds - Import took 0.012484 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002820 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.004 seconds -Domain Reload Profiling: - ReloadAssembly (1005ms) - BeginReloadAssembly (104ms) + ReloadAssembly (1014ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (843ms) - LoadAssemblies (79ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (881ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (281ms) + SetupTypeCache (190ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (55ms) - SetupLoadedEditorAssemblies (281ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (260ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (1ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (179ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (171ms) ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 97.9 MB. +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2643. -Total: 3.537700 ms (FindLiveObjects: 0.210400 ms CreateObjectMapping: 0.077000 ms MarkObjects: 3.211400 ms DeleteObjects: 0.037800 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2689. +Total: 2.714500 ms (FindLiveObjects: 0.134900 ms CreateObjectMapping: 0.048400 ms MarkObjects: 2.495600 ms DeleteObjects: 0.034500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -850,52 +3369,165 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002437 seconds. +Registered in 0.001231 seconds. Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.944 seconds +- Completed reload, in 0.921 seconds Domain Reload Profiling: - ReloadAssembly (945ms) - BeginReloadAssembly (96ms) + ReloadAssembly (921ms) + BeginReloadAssembly (83ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (789ms) - LoadAssemblies (75ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (787ms) + LoadAssemblies (59ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (255ms) + SetupTypeCache (184ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (281ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (238ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (86ms) - ProcessInitializeOnLoadAttributes (178ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.8 MB. -System memory in use after: 98.0 MB. +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. -Total: 2.740400 ms (FindLiveObjects: 0.186000 ms CreateObjectMapping: 0.077800 ms MarkObjects: 2.455900 ms DeleteObjects: 0.019200 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2691. +Total: 2.264300 ms (FindLiveObjects: 0.122300 ms CreateObjectMapping: 0.043600 ms MarkObjects: 2.083000 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001175 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.911 seconds +Domain Reload Profiling: + ReloadAssembly (912ms) + BeginReloadAssembly (81ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + EndReloadAssembly (790ms) + LoadAssemblies (56ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (177ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2693. +Total: 2.449900 ms (FindLiveObjects: 0.167800 ms CreateObjectMapping: 0.054800 ms MarkObjects: 2.207700 ms DeleteObjects: 0.018000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001330 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.987 seconds +Domain Reload Profiling: + ReloadAssembly (987ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (853ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (199ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2695. +Total: 2.065300 ms (FindLiveObjects: 0.156300 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.842400 ms DeleteObjects: 0.013700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -910,149 +3542,348 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 202.920225 seconds. - path: Assets/Prefabs/Cards/Standart/Card.prefab - artifactKey: Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart/Card.prefab using Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4d3fe8543ae55dc56ae31e2cdab84c2') in 0.039929 seconds - Import took 0.043756 seconds . - -======================================================================== -Received Import Request. - Time since last request: 20.758023 seconds. - path: Assets/Prefabs/Cards/AddStamina.prefab - artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '68ecbfaf13c12588a85dda3c7af1c6a8') in 0.010686 seconds - Import took 0.015946 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.414273 seconds. - path: Assets/Prefabs/Cards/BigHealing.prefab - artifactKey: Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/BigHealing.prefab using Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8f026f100cd3e6849d3bdb4910f9ee0') in 0.012339 seconds - Import took 0.017760 seconds . - -======================================================================== -Received Import Request. - Time since last request: 11.643633 seconds. - path: Assets/Prefabs/Cards/LongBigDamagePrefab.prefab - artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongBigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a57ef3047b36a504dd7ac1f601df87a5') in 0.011937 seconds - Import took 0.015669 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.958175 seconds. - path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab - artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5bf1df019ba9fc345565cb3e746074d2') in 0.008795 seconds - Import took 0.013341 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.638038 seconds. - path: Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab - artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b86726babd365bd714be8aad297174d') in 0.013361 seconds - Import took 0.017468 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.657448 seconds. - path: Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab - artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7b5fab1dfe557b6943ad726c8e223df') in 0.009810 seconds - Import took 0.015014 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.867205 seconds. - path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab - artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '26ad84474d93d739a1efcda15d66020f') in 0.006853 seconds - Import took 0.011086 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.077638 seconds. - path: Assets/Prefabs/Cards/SmallArmor.prefab - artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b097d80686c2c1635c54d7f85858cd1a') in 0.014260 seconds - Import took 0.019175 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.766953 seconds. - path: Assets/Prefabs/Cards/SmallArmor.prefab - artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c9bfb16d2bfc7eb31a33c4af3909a31') in 0.008086 seconds - Import took 0.015994 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.904741 seconds. - path: Assets/Prefabs/Cards/SmallHealing.prefab - artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e8245f209af9ca83b99f6745df72bc21') in 0.008194 seconds - Import took 0.013560 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.038676 seconds. - path: Assets/Prefabs/Cards/UltraMegaAttack.prefab - artifactKey: Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/UltraMegaAttack.prefab using Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ab9a2ed9e2b47fd17a912d6781fa13f') in 0.006391 seconds - Import took 0.011352 seconds . + Time since last request: 2026.656468 seconds. + path: Assets/Scenes/Inventory.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ddc2bf21d9cbaf91a305c68f17fbbca') in 0.025532 seconds + Import took 0.028064 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.014580 seconds. +Registered in 0.001303 seconds. Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.972 seconds +- Completed reload, in 0.954 seconds Domain Reload Profiling: - ReloadAssembly (972ms) + ReloadAssembly (954ms) + BeginReloadAssembly (82ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (828ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (206ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2697. +Total: 2.246400 ms (FindLiveObjects: 0.131800 ms CreateObjectMapping: 0.046100 ms MarkObjects: 2.042200 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001284 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.981 seconds +Domain Reload Profiling: + ReloadAssembly (982ms) + BeginReloadAssembly (91ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (847ms) + LoadAssemblies (63ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (196ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (69ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2699. +Total: 2.530900 ms (FindLiveObjects: 0.138600 ms CreateObjectMapping: 0.048700 ms MarkObjects: 2.326100 ms DeleteObjects: 0.016500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001419 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.011 seconds +Domain Reload Profiling: + ReloadAssembly (1011ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + EndReloadAssembly (870ms) + LoadAssemblies (64ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (195ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2701. +Total: 2.537000 ms (FindLiveObjects: 0.165000 ms CreateObjectMapping: 0.067000 ms MarkObjects: 2.288400 ms DeleteObjects: 0.015500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001861 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.971 seconds +Domain Reload Profiling: + ReloadAssembly (971ms) BeginReloadAssembly (96ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (830ms) + LoadAssemblies (62ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (192ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2703. +Total: 2.454800 ms (FindLiveObjects: 0.127500 ms CreateObjectMapping: 0.046800 ms MarkObjects: 2.257700 ms DeleteObjects: 0.021400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001194 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.926 seconds +Domain Reload Profiling: + ReloadAssembly (926ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + EndReloadAssembly (788ms) + LoadAssemblies (59ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (183ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (38ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2705. +Total: 2.097500 ms (FindLiveObjects: 0.133900 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.895400 ms DeleteObjects: 0.024500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.001429 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.041 seconds +Domain Reload Profiling: + ReloadAssembly (1041ms) + BeginReloadAssembly (92ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (30ms) - EndReloadAssembly (824ms) - LoadAssemblies (76ms) + EndReloadAssembly (904ms) + LoadAssemblies (65ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (253ms) - ReleaseScriptCaches (2ms) + SetupTypeCache (209ms) + ReleaseScriptCaches (1ms) RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (303ms) + SetupLoadedEditorAssemblies (250ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (91ms) - ProcessInitializeOnLoadAttributes (194ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (72ms) + ProcessInitializeOnLoadAttributes (164ms) ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. +System memory in use before: 94.9 MB. +System memory in use after: 95.0 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2647. -Total: 2.785600 ms (FindLiveObjects: 0.205500 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.469200 ms DeleteObjects: 0.025600 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2707. +Total: 2.244800 ms (FindLiveObjects: 0.169700 ms CreateObjectMapping: 0.052600 ms MarkObjects: 2.007000 ms DeleteObjects: 0.014400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 7e7a2d34..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,3 +1,4 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log index 7e7a2d34..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe1.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -1,3 +1,4 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe10.log b/Logs/shadercompiler-UnityShaderCompiler.exe10.log new file mode 100644 index 00000000..e63fe353 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe10.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/Logs/shadercompiler-UnityShaderCompiler.exe11.log new file mode 100644 index 00000000..75cc7b08 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe11.log @@ -0,0 +1,6 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/Logs/shadercompiler-UnityShaderCompiler.exe2.log index 7e7a2d34..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe2.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -1,3 +1,4 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log index e63fe353..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe4.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -2,3 +2,5 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log index 7e7a2d34..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe5.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -1,3 +1,6 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log index 7e7a2d34..75cc7b08 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe7.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -1,3 +1,6 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/Logs/shadercompiler-UnityShaderCompiler.exe8.log new file mode 100644 index 00000000..75cc7b08 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe8.log @@ -0,0 +1,6 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: shutdown + +Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe9.log b/Logs/shadercompiler-UnityShaderCompiler.exe9.log new file mode 100644 index 00000000..e63fe353 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe9.log @@ -0,0 +1,4 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: shutdown diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index 2c958829..f343a4ff 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -9,14 +9,17 @@ EditorUserSettings: value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d flags: 0 RecentlyUsedScenePath-1: - value: 22424703114646680e0b0227036c761e0012163e233a3f7e38271427fb + value: 22424703114646680e0b0227036c7d110203142f1f2b233e2867083debf42d flags: 0 RecentlyUsedScenePath-2: - value: 22424703114646680e0b0227036c7d110203142f1f2b233e2867083debf42d + value: 22424703114646680e0b0227036c7b1102163025202c2322633c133af6f9 flags: 0 RecentlyUsedScenePath-3: value: 22424703114646680e0b0227036c72111f19352f223d68252320092a flags: 0 + RecentlyUsedScenePath-4: + value: 22424703114646680e0b0227036c761e0012163e233a3f7e38271427fb + flags: 0 vcSharedLogLevel: value: 0d5e400f0650 flags: 0 diff --git a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 240f47e8..008af472 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 54602135..e3f999e7 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ