It works, but not as it should)

This commit is contained in:
Беляев Даниил 2022-01-17 23:09:07 +03:00
parent 50985c9aa4
commit c93e1eff29
110 changed files with 5211 additions and 1273 deletions

Binary file not shown.

View File

@ -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:

View File

@ -15,6 +15,8 @@ public class AddEquipment : MonoBehaviour
{
Inventory.main.playerPlace[i].image.sprite = Inventory.main.imagePlug;
Inventory.main.playerPlace[i].GetComponent<PlaceEquipment>().equipmentNum = -1;
Inventory.main.localplayerEquipment.Add(Inventory.main.allEquipment[Inventory.main.lastCardNum]);
Inventory.main.gameObject.GetComponent<SpawnButton>().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<SpawnButton>().InstantiateEquipmentButton(0, 9);
}
DataScript.PlayerEquipment = Inventory.main.playerEquipment;

View File

@ -35,8 +35,6 @@ public class EquipmentInfo : MonoBehaviour
icon.sprite = Inventory.main.allEquipment[_index].GetComponent<Equipment>().equipmentConfig.equipmentCharacteristics.sprite;
if (Inventory.main.EquipedOrNot(Inventory.main.lastCardNum))
AddButton.GetComponentInChildren<Text>().text = "UnEquip";
else
AddButton.GetComponentInChildren<Text>().text = "Equip";
}

View File

@ -8,6 +8,7 @@ public class Inventory : MonoBehaviour
public static Inventory main;
public List<GameObject> allEquipment = new List<GameObject>();
public List<GameObject> playerEquipment = new List<GameObject>();
[SerializeField] public List<GameObject> localplayerEquipment = new List<GameObject>();
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<Equipment>().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<PlaceEquipment>().equipmentNum = lastCardNum;

View File

@ -12,7 +12,10 @@ public class PlaceEquipment : MonoBehaviour
{
//Óðàààààà, âñå ðàáîòàåò
if (GetComponentInChildren<Image>().sprite.name != Inventory.main.imagePlug.name && equipmentNum != -1)
{
Inventory.main.lastCardNum = equipmentNum;
EquipmentInfo.main.CardAbout(equipmentNum);
}
}
}

View File

@ -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<EquipmentButton>().num = i;
link.transform.localPosition = new Vector3(_x, _y, 0);
link.image.sprite = Inventory.main.allEquipment[i].GetComponent<Equipment>().equipmentConfig.equipmentCharacteristics.sprite;
link.image.sprite = Inventory.main.localplayerEquipment[i].GetComponent<Equipment>().equipmentConfig.equipmentCharacteristics.sprite;
_x += gameObject.GetComponent<RectTransform>().rect.width + distX;

Binary file not shown.

View File

@ -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:
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: 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}
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}

View File

@ -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}}
{"m_DefineSymbols":{"m_Value":[],"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":true,"m_Initialized":true}}

Binary file not shown.

View File

@ -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

View File

@ -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)

View File

@ -1 +1 @@
41bc876834200554b9cdf46ac8dbc2f9
f5e98bd93cbb082bc13febd9deb805dc

Binary file not shown.

Binary file not shown.

View File

@ -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

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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