diff --git a/.vs/PO/v16/.suo b/.vs/PO/v16/.suo index d2da1dd7..2d2a99ab 100644 Binary files a/.vs/PO/v16/.suo and b/.vs/PO/v16/.suo differ diff --git a/Assets/DataHolder.cs b/Assets/DataHolder.cs new file mode 100644 index 00000000..69da0e23 --- /dev/null +++ b/Assets/DataHolder.cs @@ -0,0 +1,125 @@ +using System.Collections; +using System.Collections.Generic; + +using UnityEngine; +using UnityEngine.SceneManagement; + +public class DataHolder : MonoBehaviour +{ + public static DataHolder main; + public List easyLevels; + public List normalLevels; + public List hardLevels; + + public MissionConfig mission; + [SerializeField] private string _currentScene; + private int score = 10; + + private int missionChecker; + + public enum complexityLevels + { + easy, + normal, + hard, + all + }; + private void Awake() + { + if(_currentScene == null) + { + Debug.LogError("WARNING! _currentScene in DataHolder not found"); + } + if (main != null && main != this) + { + Debug.LogWarning("2 dataholders on the scene"); + Destroy(this); + return; + } + + main = this; + } + public void SetScore(int _newScore) + { + score = _newScore; + } + + public int GetScore() + { + return score; + } + public void ChangeScene(string _sceneName) + { + SceneManager.LoadScene(_sceneName, LoadSceneMode.Additive); + SceneManager.UnloadSceneAsync(_currentScene); + _currentScene = _sceneName; + } + //RANDOM LEVELS BLOCK + public BattleConfig RandomLevel(complexityLevels _complexity) + { + switch (_complexity) + { + case complexityLevels.easy: + return RandomEasyLevel(); + case complexityLevels.normal: + return RandomNormalLevel(); + case complexityLevels.hard: + return RandomHardLevel(); + default: + return RandomAllLevel(); + } + } + private BattleConfig RandomEasyLevel() + { + return easyLevels[Random.Range(0, easyLevels.Count)]; + } + private BattleConfig RandomNormalLevel() + { + return normalLevels[Random.Range(0, normalLevels.Count)]; ; + } + private BattleConfig RandomHardLevel() + { + return hardLevels[Random.Range(0, hardLevels.Count)]; + + } + private BattleConfig RandomAllLevel() + { + int _maxNumber = Random.Range(0, + easyLevels.Count + normalLevels.Count + hardLevels.Count); + if (_maxNumber < easyLevels.Count) + { + Debug.Log(_maxNumber); + return easyLevels[_maxNumber]; + } + else if (_maxNumber - easyLevels.Count < normalLevels.Count) + { + + return normalLevels[_maxNumber - easyLevels.Count]; + } + else + { + return hardLevels[_maxNumber - easyLevels.Count - normalLevels.Count]; + } + } + //RANDOM LEVELS BLOCK END + + public void NewMission(MissionConfig _mission) + { + mission = _mission; + missionChecker = 0; + } + public BattleConfig NextBattle() + { + missionChecker++; + if(missionChecker > mission.missionItems.Count) + { + return null; + } + return mission.missionItems[missionChecker - 1].battle; + } + + public void ReturnInMainMenu() + { + ChangeScene("MainMenu"); + } +} diff --git a/Assets/DataHolder.cs.meta b/Assets/DataHolder.cs.meta new file mode 100644 index 00000000..5fabdeef --- /dev/null +++ b/Assets/DataHolder.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7dc4bce8f5915e742a365be001dbc164 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf b/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf new file mode 100644 index 00000000..9c522f9d Binary files /dev/null and b/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf differ diff --git a/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf.meta b/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf.meta new file mode 100644 index 00000000..b01b25f0 --- /dev/null +++ b/Assets/Graphics/Fonts/Serifiqo 4F Free Capitals.otf.meta @@ -0,0 +1,21 @@ +fileFormatVersion: 2 +guid: 1adb65df912c9a74bbbaae177c2372d9 +TrueTypeFontImporter: + externalObjects: {} + serializedVersion: 4 + fontSize: 16 + forceTextureCase: -2 + characterSpacing: 0 + characterPadding: 1 + includeFontData: 1 + fontNames: + - Serifiqo 4F + fallbackFontReferences: [] + customCharacters: + fontRenderingMode: 0 + ascentCalculationMode: 1 + useLegacyBoundsCalculation: 0 + shouldRoundAdvanceValue: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MainCamera.cs b/Assets/MainCamera.cs new file mode 100644 index 00000000..3bc4367c --- /dev/null +++ b/Assets/MainCamera.cs @@ -0,0 +1,16 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class MainCamera : MonoBehaviour +{ + public void GoToMission(MissionConfig _mission) + { + DataHolder.main.NewMission(_mission); + DataHolder.main.ChangeScene("BattleScene"); + } + public void EndlessGame() + { + DataHolder.main.ChangeScene("BattleScene"); + } +} diff --git a/Assets/MainCamera.cs.meta b/Assets/MainCamera.cs.meta new file mode 100644 index 00000000..6cc5701e --- /dev/null +++ b/Assets/MainCamera.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 92d6b3dda9f50f74ab31bbba09e20198 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/PhaseCounter.cs b/Assets/PhaseCounter.cs new file mode 100644 index 00000000..56639df3 --- /dev/null +++ b/Assets/PhaseCounter.cs @@ -0,0 +1,43 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class PhaseCounter : MonoBehaviour +{ + private Text _phaseCount; + private int _maxPhase = 1; + private int _phase = 1; + private void Awake() + { + _phaseCount = GetComponent(); + } + public void NewPhase() + { + _phase++; + _phaseCount.text = "Phase: " + _phase + "/" + _maxPhase; + } + + public void NewMaxPhase(BattleConfig _config) + { + var _character = _config.battleCharacteristics; + + if(_character.SecondPhase == true) + { + if(_character.ThirdPhase == true) + { + _maxPhase = 3; + } + else + { + _maxPhase = 2; + } + } + else + { + _maxPhase = 1; + } + _phase = 0; + NewPhase(); + } +} diff --git a/Assets/PhaseCounter.cs.meta b/Assets/PhaseCounter.cs.meta new file mode 100644 index 00000000..57d56a17 --- /dev/null +++ b/Assets/PhaseCounter.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 89e4f147f32af244891dae70ac1f1e56 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Prefabs/Cards/UltraMegaAttack.prefab b/Assets/Prefabs/Cards/UltraMegaAttack.prefab new file mode 100644 index 00000000..3c6bed66 --- /dev/null +++ b/Assets/Prefabs/Cards/UltraMegaAttack.prefab @@ -0,0 +1,753 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1609771953299064646 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4771069441355296626} + - component: {fileID: 6735017615792461092} + - component: {fileID: 8339040599585838505} + m_Layer: 5 + m_Name: Type + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4771069441355296626 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1609771953299064646} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.10754341, y: 0.10754341, z: 0.10754341} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -72.6, y: -62.9} + m_SizeDelta: {x: 543.4585, y: 388.6396} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6735017615792461092 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1609771953299064646} + m_CullTransparentMesh: 0 +--- !u!114 &8339040599585838505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1609771953299064646} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Atk +--- !u!1 &2048239979282860772 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7888672239921792392} + - component: {fileID: 5307945446722769428} + - component: {fileID: 7644878962686554186} + m_Layer: 5 + m_Name: Cost + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7888672239921792392 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048239979282860772} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.10754341, y: 0.10754341, z: 0.10754341} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 74.9, y: -110.8} + m_SizeDelta: {x: 543.4585, y: 388.6396} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5307945446722769428 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048239979282860772} + m_CullTransparentMesh: 0 +--- !u!114 &7644878962686554186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2048239979282860772} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 2 +--- !u!1 &2174222393832354180 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4691312143915581112} + - component: {fileID: 8079126108144025688} + - component: {fileID: 8993951774176160205} + - component: {fileID: 1552329347112270613} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4691312143915581112 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2174222393832354180} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.0029296875, y: -0.00012207031} + m_SizeDelta: {x: 209.58911, y: 280.18066} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8079126108144025688 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2174222393832354180} + m_CullTransparentMesh: 0 +--- !u!114 &8993951774176160205 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2174222393832354180} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1552329347112270613 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2174222393832354180} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 8993951774176160205} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 2077714030763369409} + m_TargetAssemblyTypeName: + m_MethodName: OnClick + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!1 &2395137712401459668 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1461157171804990757} + - component: {fileID: 264836397697721033} + - component: {fileID: 6764859267273153880} + m_Layer: 5 + m_Name: Quantity + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1461157171804990757 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2395137712401459668} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.10754341, y: 0.10754341, z: 0.10754341} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -72.6, y: -110.8} + m_SizeDelta: {x: 543.4585, y: 388.6396} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &264836397697721033 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2395137712401459668} + m_CullTransparentMesh: 0 +--- !u!114 &6764859267273153880 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2395137712401459668} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 15 +--- !u!1 &6582633329347417722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3741952534908770683} + - component: {fileID: 3656883488476568494} + - component: {fileID: 2412892185416126480} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3741952534908770683 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6582633329347417722} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3656883488476568494 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6582633329347417722} + m_CullTransparentMesh: 0 +--- !u!114 &2412892185416126480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6582633329347417722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6765128093930921004 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6765128093930921005} + - component: {fileID: 6765128093930921007} + - component: {fileID: 6765128093930921006} + m_Layer: 5 + m_Name: BakgroundCard + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6765128093930921005 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128093930921004} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.000011444092, y: 0} + m_SizeDelta: {x: 209.59454, y: 280.18082} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6765128093930921007 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128093930921004} + m_CullTransparentMesh: 0 +--- !u!114 &6765128093930921006 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128093930921004} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6765128094213305608 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6765128094213305609} + - component: {fileID: 2077714030763369409} + - component: {fileID: 5139430113101627829} + m_Layer: 5 + m_Name: UltraMegaAttack + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6765128094213305609 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128094213305608} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6765128093930921005} + - {fileID: 7690771068042610719} + - {fileID: 669571680899366569} + - {fileID: 7888672239921792392} + - {fileID: 4771069441355296626} + - {fileID: 1461157171804990757} + - {fileID: 3741952534908770683} + - {fileID: 4691312143915581112} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -54.8, y: -380.83} + m_SizeDelta: {x: 209.59491, y: 280.18555} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2077714030763369409 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128094213305608} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c0cf382e614d3e84194ce693591df5d5, type: 3} + m_Name: + m_EditorClassIdentifier: + cardConfig: {fileID: 11400000, guid: e8ca549d99fe5cf4397542620ed834cb, type: 2} + number: 0 + cardObject: {fileID: 6765128094213305608} + picture: {fileID: 2412892185416126480} + nameCard: {fileID: 953190357057458929} + costTitle: {fileID: 4939875813011195202} + cost: {fileID: 7644878962686554186} + type: {fileID: 8339040599585838505} + quantity: {fileID: 6764859267273153880} +--- !u!222 &5139430113101627829 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6765128094213305608} + m_CullTransparentMesh: 0 +--- !u!1 &6799654100190161255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 669571680899366569} + - component: {fileID: 6433774047502603482} + - component: {fileID: 4939875813011195202} + m_Layer: 5 + m_Name: CostTitle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &669571680899366569 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6799654100190161255} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.10754341, y: 0.10754341, z: 0.10754341} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 74.9, y: -62.9} + m_SizeDelta: {x: 543.4585, y: 388.6396} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6433774047502603482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6799654100190161255} + m_CullTransparentMesh: 0 +--- !u!114 &4939875813011195202 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6799654100190161255} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Stam +--- !u!1 &8862432786639125036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7690771068042610719} + - component: {fileID: 7015885660958318054} + - component: {fileID: 953190357057458929} + m_Layer: 5 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7690771068042610719 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8862432786639125036} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.10754341, y: 0.10754341, z: 0.10754341} + m_Children: [] + m_Father: {fileID: 6765128094213305609} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.00024414, y: 103} + m_SizeDelta: {x: 1948.9277, y: 388.6396} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7015885660958318054 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8862432786639125036} + m_CullTransparentMesh: 0 +--- !u!114 &953190357057458929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8862432786639125036} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Big attack diff --git a/Assets/Prefabs/Cards/UltraMegaAttack.prefab.meta b/Assets/Prefabs/Cards/UltraMegaAttack.prefab.meta new file mode 100644 index 00000000..9a2a2d20 --- /dev/null +++ b/Assets/Prefabs/Cards/UltraMegaAttack.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 36c35c372a23bc349b3f2613d898cdda +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/BattleScene.unity b/Assets/Scenes/BattleScene.unity index f1a35b0b..56c5e8f6 100644 --- a/Assets/Scenes/BattleScene.unity +++ b/Assets/Scenes/BattleScene.unity @@ -123,6 +123,308 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} +--- !u!1 &23443380 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 23443381} + - component: {fileID: 23443385} + - component: {fileID: 23443384} + - component: {fileID: 23443383} + - component: {fileID: 23443382} + m_Layer: 5 + m_Name: Shoes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &23443381 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23443380} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2024821050} + m_Father: {fileID: 1026269797} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: -377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &23443382 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23443380} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 5 + equipmentNum: -1 +--- !u!114 &23443383 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23443380} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 23443384} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1212020578} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &23443384 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23443380} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &23443385 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23443380} + m_CullTransparentMesh: 1 +--- !u!1 &36874819 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 36874820} + - component: {fileID: 36874822} + - component: {fileID: 36874821} + m_Layer: 5 + m_Name: 'Frame ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &36874820 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36874819} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 625218579} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 564.16675, y: -20} + m_SizeDelta: {x: 782.8271, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &36874821 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36874819} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &36874822 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36874819} + m_CullTransparentMesh: 1 +--- !u!1 &54712243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 54712244} + - component: {fileID: 54712246} + - component: {fileID: 54712245} + m_Layer: 5 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &54712244 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 54712243} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 625218579} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.1699, y: 150} + m_SizeDelta: {x: 219.47, y: 61.8822} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &54712245 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 54712243} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 300 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Name +--- !u!222 &54712246 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 54712243} + m_CullTransparentMesh: 1 --- !u!1 &73259538 GameObject: m_ObjectHideFlags: 0 @@ -273,6 +575,537 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 184524148} m_CullTransparentMesh: 0 +--- !u!1 &189503547 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 189503548} + - component: {fileID: 189503550} + - component: {fileID: 189503549} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &189503548 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 189503547} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 743217711} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &189503549 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 189503547} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Add +--- !u!222 &189503550 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 189503547} + m_CullTransparentMesh: 1 +--- !u!1 &209794824 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 209794825} + - component: {fileID: 209794827} + - component: {fileID: 209794826} + m_Layer: 5 + m_Name: Player + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &209794825 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209794824} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2.9846, y: 4.4395924, z: 2.9846} + m_Children: [] + m_Father: {fileID: 1819861233} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: 0} + m_SizeDelta: {x: 192.1169, y: 200.8572} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &209794826 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209794824} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.25490198} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cbff014c4cf09684c84284e36be315ac, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &209794827 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 209794824} + m_CullTransparentMesh: 1 +--- !u!1 &241184760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 241184761} + - component: {fileID: 241184763} + - component: {fileID: 241184762} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &241184761 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241184760} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1838632213} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.0021744, y: -0.00043488} + m_SizeDelta: {x: 532.08, y: 365.28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &241184762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241184760} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607844, g: 0.8588236, b: 0.7019608, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &241184763 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241184760} + m_CullTransparentMesh: 1 +--- !u!1 &339012376 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 339012377} + - component: {fileID: 339012379} + - component: {fileID: 339012378} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &339012377 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339012376} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.61839056} + m_Children: [] + m_Father: {fileID: 2058139892} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.21838379, y: 0.10920715} + m_SizeDelta: {x: 585.4558, y: 292.7169} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &339012378 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339012376} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Next level +--- !u!222 &339012379 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339012376} + m_CullTransparentMesh: 1 +--- !u!1 &347814892 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 347814893} + - component: {fileID: 347814895} + - component: {fileID: 347814894} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &347814893 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 347814892} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 943923940} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &347814894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 347814892} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &347814895 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 347814892} + m_CullTransparentMesh: 1 +--- !u!1 &518861535 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 518861536} + - component: {fileID: 518861540} + - component: {fileID: 518861539} + - component: {fileID: 518861538} + - component: {fileID: 518861537} + m_Layer: 5 + m_Name: Pet + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &518861536 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518861535} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2046722153} + m_Father: {fileID: 1026269797} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -445, y: -110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &518861537 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518861535} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 4 + equipmentNum: -1 +--- !u!114 &518861538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518861535} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 518861539} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1212020578} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &518861539 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518861535} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &518861540 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518861535} + m_CullTransparentMesh: 1 --- !u!1 &519420028 GameObject: m_ObjectHideFlags: 0 @@ -324,6 +1157,9 @@ MonoBehaviour: - {fileID: 3374814057080039205, guid: ae1ab462daf0a5c4ca40701af32d6f47, type: 3} - {fileID: 7222112331664167800, guid: 888b5256d068ffe479a1b48633842ad4, type: 3} - {fileID: 7222112331664167800, guid: 888b5256d068ffe479a1b48633842ad4, type: 3} + - {fileID: 6765128094213305608, guid: 36c35c372a23bc349b3f2613d898cdda, type: 3} + - {fileID: 6765128094213305608, guid: 36c35c372a23bc349b3f2613d898cdda, type: 3} + - {fileID: 6765128094213305608, guid: 36c35c372a23bc349b3f2613d898cdda, type: 3} cardsPosition: - {fileID: 1257316224} - {fileID: 813908841} @@ -425,6 +1261,30 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 1 m_CallState: 2 + - m_Target: {fileID: 596008590} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1805280931} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 onDefeat: m_PersistentCalls: m_Calls: @@ -440,7 +1300,7 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 1 m_CallState: 2 - - m_Target: {fileID: 1718398096} + - m_Target: {fileID: 596008590} m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine m_MethodName: SetActive m_Mode: 6 @@ -452,10 +1312,88 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 0 m_CallState: 2 - - m_Target: {fileID: 1135022039} + onInventory: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 559254427} m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine m_MethodName: SetActive m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 770121095} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + onNextLevel: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 519420034} + m_TargetAssemblyTypeName: Session, Assembly-CSharp + m_MethodName: NextLevel + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 596008590} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 770121095} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: DeckManager, Assembly-CSharp + m_MethodName: NewStaminaQuantity + m_Mode: 3 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 3 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 519420030} + m_TargetAssemblyTypeName: DeckManager, Assembly-CSharp + m_MethodName: EndTurn + m_Mode: 6 m_Arguments: m_ObjectArgument: {fileID: 0} m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine @@ -475,10 +1413,541 @@ MonoBehaviour: player: {fileID: 5565334654496439714, guid: c0b94d336afc615439f5c5ef9c7abb16, type: 3} playerPosition: {fileID: 1240862618} playerLink: {fileID: 0} + phaseCounter: {fileID: 1805280935} numberPhase: 1 quantityEnemies: 0 waitingEndingRound: 0 + nextLevel: {fileID: 0} currentEnemies: [] +--- !u!1 &521448533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 521448534} + - component: {fileID: 521448536} + - component: {fileID: 521448535} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &521448534 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521448533} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 907360453} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -22.262, y: -20} + m_SizeDelta: {x: 712.702, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &521448535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521448533} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &521448536 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521448533} + m_CullTransparentMesh: 1 +--- !u!1 &559254427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 559254428} + - component: {fileID: 559254429} + - component: {fileID: 559254431} + - component: {fileID: 559254430} + - component: {fileID: 559254433} + - component: {fileID: 559254432} + m_Layer: 5 + m_Name: InventoryCanvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &559254428 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1228818526} + - {fileID: 1819861233} + - {fileID: 907360453} + - {fileID: 625218579} + m_Father: {fileID: 1302787964} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 960, y: 540} + m_SizeDelta: {x: 1920, y: 1080} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!223 &559254429 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &559254430 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &559254431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 180} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!114 &559254432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d09743e90e31cbf44b09c9355d4ba732, type: 3} + m_Name: + m_EditorClassIdentifier: + localName: {fileID: 54712245} + desqription: {fileID: 1685286600} + icon: {fileID: 1621110209} + AddButton: {fileID: 743217713} +--- !u!114 &559254433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 559254427} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b702bb7d4d345f4a81b2a1cd9ddd648, type: 3} + m_Name: + m_EditorClassIdentifier: + allEquipment: + - {fileID: 4068511147674530333, guid: ca90993e80150994e905b83ffd525f53, type: 3} + - {fileID: 726422991776119786, guid: ffde653421f3d064cbdfc3b4571a5a2a, type: 3} + playerEquipment: [] + imagePlug: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + playerPlace: + - {fileID: 1617960470} + - {fileID: 574309838} + - {fileID: 1212020579} + - {fileID: 943923942} + - {fileID: 518861538} + - {fileID: 23443383} + lastCardNum: 0 +--- !u!1 &565565346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 565565347} + - component: {fileID: 565565351} + - component: {fileID: 565565350} + - component: {fileID: 565565349} + - component: {fileID: 565565348} + m_Layer: 5 + m_Name: Back + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &565565347 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565565346} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 946107065} + m_Father: {fileID: 1819861233} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: -755, y: 390} + m_SizeDelta: {x: 216.43, y: 60.2327} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &565565348 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565565346} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7feed73df43e92845adff59e1a91f2d8, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasToOn: {fileID: 0} + canvasToOff: {fileID: 559254429} +--- !u!114 &565565349 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565565346} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 565565350} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 770121095} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 1 + m_CallState: 2 + - m_Target: {fileID: 559254427} + m_TargetAssemblyTypeName: UnityEngine.GameObject, UnityEngine + m_MethodName: SetActive + m_Mode: 6 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &565565350 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565565346} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &565565351 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 565565346} + m_CullTransparentMesh: 1 +--- !u!1 &574309835 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 574309836} + - component: {fileID: 574309840} + - component: {fileID: 574309839} + - component: {fileID: 574309838} + - component: {fileID: 574309837} + m_Layer: 5 + m_Name: Gloves + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &574309836 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574309835} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 638750114} + m_Father: {fileID: 1026269797} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -810, y: 110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &574309837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574309835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 1 + equipmentNum: -1 +--- !u!114 &574309838 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574309835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 574309839} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1212020578} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &574309839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574309835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &574309840 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574309835} + m_CullTransparentMesh: 1 --- !u!1 &596008590 GameObject: m_ObjectHideFlags: 0 @@ -511,8 +1980,9 @@ RectTransform: - {fileID: 1135022040} - {fileID: 1718398097} - {fileID: 1859831387} + - {fileID: 1805280932} m_Father: {fileID: 1302787964} - m_RootOrder: 3 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -557,6 +2027,195 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 596008590} m_CullTransparentMesh: 0 +--- !u!1 &625218578 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 625218579} + m_Layer: 5 + m_Name: EquipmentDescription + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &625218579 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625218578} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 36874820} + - {fileID: 54712244} + - {fileID: 2145946982} + - {fileID: 1838632213} + m_Father: {fileID: 559254428} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &638750113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 638750114} + - component: {fileID: 638750116} + - component: {fileID: 638750115} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &638750114 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638750113} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 574309836} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &638750115 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638750113} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &638750116 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638750113} + m_CullTransparentMesh: 1 +--- !u!1 &674562080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 674562081} + - component: {fileID: 674562083} + - component: {fileID: 674562082} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &674562081 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674562080} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1617960468} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &674562082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674562080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &674562083 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 674562080} + m_CullTransparentMesh: 1 --- !u!1 &676626519 GameObject: m_ObjectHideFlags: 0 @@ -592,6 +2251,227 @@ RectTransform: m_AnchoredPosition: {x: 300, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &743217710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 743217711} + - component: {fileID: 743217715} + - component: {fileID: 743217714} + - component: {fileID: 743217713} + - component: {fileID: 743217712} + m_Layer: 5 + m_Name: AddButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &743217711 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 743217710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 189503548} + m_Father: {fileID: 1838632213} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -272} + m_SizeDelta: {x: 305.8154, y: 96.427} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &743217712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 743217710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2515a089f77897f4ea7e039866ece790, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &743217713 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 743217710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 743217714} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 743217712} + m_TargetAssemblyTypeName: AddEquipment, Assembly-CSharp + m_MethodName: AddOrRemove + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &743217714 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 743217710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &743217715 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 743217710} + m_CullTransparentMesh: 1 +--- !u!1 &755510426 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 755510427} + - component: {fileID: 755510429} + - component: {fileID: 755510428} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &755510427 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755510426} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1819861233} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: -540, y: -20} + m_SizeDelta: {x: 718.5554, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &755510428 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755510426} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &755510429 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755510426} + m_CullTransparentMesh: 1 --- !u!1 &770121095 GameObject: m_ObjectHideFlags: 0 @@ -620,9 +2500,11 @@ RectTransform: m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0.549335, y: 0.549335, z: 0.549335} - m_Children: [] + m_Children: + - {fileID: 1293451349} + - {fileID: 2058139892} m_Father: {fileID: 1302787964} - m_RootOrder: 0 + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -706,6 +2588,461 @@ RectTransform: m_AnchoredPosition: {x: -300, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &877369568 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 877369569} + - component: {fileID: 877369571} + - component: {fileID: 877369570} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &877369569 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 877369568} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1212020582} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &877369570 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 877369568} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &877369571 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 877369568} + m_CullTransparentMesh: 1 +--- !u!1 &907360452 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 907360453} + m_Layer: 5 + m_Name: InventoryList + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &907360453 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907360452} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 521448534} + - {fileID: 1594427390} + m_Father: {fileID: 559254428} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &937731589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 937731590} + - component: {fileID: 937731592} + - component: {fileID: 937731591} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &937731590 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937731589} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1838632213} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.0010834, y: -0.00043488} + m_SizeDelta: {x: 532.08, y: 365.28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &937731591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937731589} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &937731592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937731589} + m_CullTransparentMesh: 1 +--- !u!1 &943923939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 943923940} + - component: {fileID: 943923944} + - component: {fileID: 943923943} + - component: {fileID: 943923942} + - component: {fileID: 943923941} + m_Layer: 5 + m_Name: Weapon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &943923940 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943923939} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 347814893} + m_Father: {fileID: 1026269797} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -810, y: -110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &943923941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943923939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 3 + equipmentNum: -1 +--- !u!114 &943923942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943923939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 943923943} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1212020578} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &943923943 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943923939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &943923944 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943923939} + m_CullTransparentMesh: 1 +--- !u!1 &946107064 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 946107065} + - component: {fileID: 946107067} + - component: {fileID: 946107066} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &946107065 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946107064} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 565565347} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &946107066 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946107064} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 200 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Back +--- !u!222 &946107067 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946107064} + m_CullTransparentMesh: 1 +--- !u!1 &1026269796 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1026269797} + m_Layer: 5 + m_Name: Equipment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1026269797 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026269796} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1617960468} + - {fileID: 574309836} + - {fileID: 1212020582} + - {fileID: 943923940} + - {fileID: 518861536} + - {fileID: 23443381} + m_Father: {fileID: 1819861233} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1036560927 GameObject: m_ObjectHideFlags: 0 @@ -785,6 +3122,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1036560927} m_CullTransparentMesh: 0 +--- !u!1 &1089274863 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1089274864} + - component: {fileID: 1089274866} + - component: {fileID: 1089274865} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1089274864 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1089274863} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2145946982} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.39478, y: 3.9417} + m_SizeDelta: {x: 250, y: 257.88} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1089274865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1089274863} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1089274866 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1089274863} + m_CullTransparentMesh: 1 --- !u!1 &1128828789 GameObject: m_ObjectHideFlags: 0 @@ -815,7 +3227,7 @@ RectTransform: m_LocalScale: {x: 1.9390976, y: 1.9390976, z: 1.9390976} m_Children: [] m_Father: {fileID: 1302787964} - m_RootOrder: 4 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -979,6 +3391,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1174871649} m_CullTransparentMesh: 0 +--- !u!1 &1186020575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1186020576} + - component: {fileID: 1186020578} + - component: {fileID: 1186020577} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1186020576 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186020575} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.61839056} + m_Children: [] + m_Father: {fileID: 1293451349} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.21838379, y: 0.10920715} + m_SizeDelta: {x: 585.4558, y: 292.7169} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1186020577 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186020575} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "To Invent\u043Ery" +--- !u!222 &1186020578 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186020575} + m_CullTransparentMesh: 1 --- !u!1 &1187103313 GameObject: m_ObjectHideFlags: 0 @@ -1148,6 +3639,229 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1193153763} m_CullTransparentMesh: 0 +--- !u!1 &1212020577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1212020582} + - component: {fileID: 1212020581} + - component: {fileID: 1212020580} + - component: {fileID: 1212020579} + - component: {fileID: 1212020578} + m_Layer: 5 + m_Name: Armor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1212020578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1212020577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 2 + equipmentNum: -1 +--- !u!114 &1212020579 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1212020577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1212020580} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1212020578} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1212020580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1212020577} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1212020581 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1212020577} + m_CullTransparentMesh: 1 +--- !u!224 &1212020582 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1212020577} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 877369569} + m_Father: {fileID: 1026269797} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -445, y: 110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1228818525 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1228818526} + - component: {fileID: 1228818528} + - component: {fileID: 1228818527} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1228818526 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1228818525} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 559254428} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.0028046, y: 0.00087237} + m_SizeDelta: {x: 1920, y: 1080} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1228818527 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1228818525} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ff90a3fa662e2924882fb7ebc5f06941, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1228818528 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1228818525} + m_CullTransparentMesh: 1 --- !u!1 &1240862617 GameObject: m_ObjectHideFlags: 0 @@ -1176,7 +3890,7 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1302787964} - m_RootOrder: 1 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} @@ -1218,6 +3932,139 @@ RectTransform: m_AnchoredPosition: {x: -600, y: -0.000030518} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1293451348 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1293451349} + - component: {fileID: 1293451352} + - component: {fileID: 1293451351} + - component: {fileID: 1293451350} + m_Layer: 5 + m_Name: InventoryButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1293451349 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293451348} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.718141, y: 0.718141, z: 0.718141} + m_Children: + - {fileID: 1186020576} + m_Father: {fileID: 770121096} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 1102, y: -440} + m_SizeDelta: {x: 1600, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1293451350 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293451348} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1293451351} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 519420034} + m_TargetAssemblyTypeName: Session, Assembly-CSharp + m_MethodName: Inventory + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1293451351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293451348} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1293451352 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293451348} + m_CullTransparentMesh: 1 --- !u!1 &1302787960 GameObject: m_ObjectHideFlags: 0 @@ -1309,11 +4156,12 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - - {fileID: 770121096} - {fileID: 1240862618} - {fileID: 1480860662} - {fileID: 596008591} - {fileID: 1128828790} + - {fileID: 770121096} + - {fileID: 559254428} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -1493,13 +4341,371 @@ RectTransform: - {fileID: 1724612208} - {fileID: 1401525583} m_Father: {fileID: 1302787964} - m_RootOrder: 2 + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0.00012207031, y: -379.9} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1594427389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1594427390} + - component: {fileID: 1594427391} + m_Layer: 5 + m_Name: ButtonsParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1594427390 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1594427389} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 907360453} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -208, y: 377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1594427391 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1594427389} + 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: 1594427389} + allButtonLinks: [] + distX: 30 + distY: 30 + maxHeroesInRow: 3 + maxHeroesInColumn: 3 + page: 0 +--- !u!1 &1617960467 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1617960468} + - component: {fileID: 1617960472} + - component: {fileID: 1617960471} + - component: {fileID: 1617960470} + - component: {fileID: 1617960469} + m_Layer: 5 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1617960468 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617960467} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 674562081} + m_Father: {fileID: 1026269797} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: 377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1617960469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617960467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 0 + equipmentNum: -1 +--- !u!114 &1617960470 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617960467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1617960471} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1617960469} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1617960471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617960467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1617960472 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1617960467} + m_CullTransparentMesh: 1 +--- !u!1 &1621110207 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1621110208} + - component: {fileID: 1621110210} + - component: {fileID: 1621110209} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1621110208 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1621110207} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2145946982} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.3948, y: -0.7896} + m_SizeDelta: {x: 227.1264, y: 232.654} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1621110209 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1621110207} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 1c5bb4d795a592b48a9500fdc8e9a61e, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1621110210 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1621110207} + m_CullTransparentMesh: 1 +--- !u!1 &1685286598 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1685286599} + - component: {fileID: 1685286601} + - component: {fileID: 1685286600} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1685286599 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1685286598} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1838632213} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -1.2418, y: 3.3745} + m_SizeDelta: {x: 468.9182, y: 330.9774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1685286600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1685286598} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Something about equipment +--- !u!222 &1685286601 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1685286598} + m_CullTransparentMesh: 1 --- !u!1 &1718398096 GameObject: m_ObjectHideFlags: 0 @@ -1668,6 +4874,251 @@ RectTransform: m_AnchoredPosition: {x: 803.9999, y: 819.74} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1761042303 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1761042304} + - component: {fileID: 1761042306} + - component: {fileID: 1761042305} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1761042304 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761042303} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2145946982} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.000061035156, y: 0} + m_SizeDelta: {x: 250, y: 250} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1761042305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761042303} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.85882354, b: 0.7019608, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1761042306 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761042303} + m_CullTransparentMesh: 1 +--- !u!1 &1805280931 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1805280932} + - component: {fileID: 1805280934} + - component: {fileID: 1805280933} + - component: {fileID: 1805280935} + m_Layer: 5 + m_Name: PhaseCounter + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1805280932 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805280931} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.15495004, y: 0.15495004, z: 0.15495004} + m_Children: [] + m_Father: {fileID: 596008591} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -234, y: 869} + m_SizeDelta: {x: 1713.5695, y: 338.06305} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1805280933 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805280931} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 0598d25ccfa0d93409546a6ced54eaf1, type: 3} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 'Phase: 1/3' +--- !u!222 &1805280934 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805280931} + m_CullTransparentMesh: 0 +--- !u!114 &1805280935 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1805280931} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 89e4f147f32af244891dae70ac1f1e56, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1819861232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1819861233} + m_Layer: 5 + m_Name: PlayerInv + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1819861233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1819861232} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 209794825} + - {fileID: 755510427} + - {fileID: 1026269797} + - {fileID: 565565347} + m_Father: {fileID: 559254428} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 166.9781, y: 203.2785} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1838632212 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1838632213} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1838632213 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1838632212} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 241184761} + - {fileID: 937731590} + - {fileID: 1685286599} + - {fileID: 743217711} + m_Father: {fileID: 625218579} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.17, y: -98} + m_SizeDelta: {x: 532.0713, y: 365.2817} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1859831386 GameObject: m_ObjectHideFlags: 0 @@ -1748,3 +5199,324 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1859831386} m_CullTransparentMesh: 0 +--- !u!1 &2024821049 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2024821050} + - component: {fileID: 2024821052} + - component: {fileID: 2024821051} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2024821050 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024821049} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 23443381} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2024821051 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024821049} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2024821052 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2024821049} + m_CullTransparentMesh: 1 +--- !u!1 &2046722152 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2046722153} + - component: {fileID: 2046722155} + - component: {fileID: 2046722154} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2046722153 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2046722152} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 518861536} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2046722154 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2046722152} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2046722155 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2046722152} + m_CullTransparentMesh: 1 +--- !u!1 &2058139891 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2058139892} + - component: {fileID: 2058139895} + - component: {fileID: 2058139894} + - component: {fileID: 2058139893} + m_Layer: 5 + m_Name: NextLevelButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2058139892 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2058139891} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.718141, y: 0.718141, z: 0.718141} + m_Children: + - {fileID: 339012377} + m_Father: {fileID: 770121096} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -995, y: -440} + m_SizeDelta: {x: 1600, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2058139893 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2058139891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2058139894} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 519420034} + m_TargetAssemblyTypeName: Session, Assembly-CSharp + m_MethodName: LaunchNextLevel + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &2058139894 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2058139891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2058139895 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2058139891} + m_CullTransparentMesh: 1 +--- !u!1 &2145946981 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2145946982} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2145946982 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145946981} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1761042304} + - {fileID: 1621110208} + - {fileID: 1089274864} + m_Father: {fileID: 625218579} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.1699, y: 317} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/Scenes/DataHolder.unity b/Assets/Scenes/DataHolder.unity new file mode 100644 index 00000000..d59ac01c --- /dev/null +++ b/Assets/Scenes/DataHolder.unity @@ -0,0 +1,182 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &1821969145 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1821969147} + - component: {fileID: 1821969146} + m_Layer: 0 + m_Name: DataHolder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1821969146 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1821969145} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7dc4bce8f5915e742a365be001dbc164, type: 3} + m_Name: + m_EditorClassIdentifier: + easyLevels: + - {fileID: 11400000, guid: 3cef7b3afdcce6a4a97f2883ee7ce203, type: 2} + - {fileID: 11400000, guid: 842ea87c23ba82e4980d0d5c1bccb263, type: 2} + - {fileID: 11400000, guid: c4b45319e9ae8c24a9438acde55e9f9a, type: 2} + normalLevels: + - {fileID: 11400000, guid: 831eae662de3b074ba854d72dd4b7706, type: 2} + - {fileID: 11400000, guid: a58b74e66a955c842842e28c951d39f5, type: 2} + - {fileID: 11400000, guid: 0b30cfc668c041747a968d2c8bf1a3cb, type: 2} + hardLevels: + - {fileID: 11400000, guid: c76ef6aeaf7e2074fb44abc864f27a75, type: 2} + - {fileID: 11400000, guid: 1ddd96264d0ff474fb1b38acae40b69f, type: 2} + - {fileID: 11400000, guid: f978d621347647a4f8505449e105298e, type: 2} + mission: {fileID: 0} + _currentScene: MainMenu +--- !u!4 &1821969147 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1821969145} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 715.51013, y: 440.34518, z: -70.05032} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Scenes/DataHolder.unity.meta b/Assets/Scenes/DataHolder.unity.meta new file mode 100644 index 00000000..30642495 --- /dev/null +++ b/Assets/Scenes/DataHolder.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a1d610a806711c147adee1d91fe7b53c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Inventory.unity b/Assets/Scenes/Inventory.unity new file mode 100644 index 00000000..6def8c63 --- /dev/null +++ b/Assets/Scenes/Inventory.unity @@ -0,0 +1,3993 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &79742418 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 79742422} + - component: {fileID: 79742419} + - component: {fileID: 79742421} + - component: {fileID: 79742420} + m_Layer: 5 + m_Name: InventoryCanvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!223 &79742419 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79742418} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &79742420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79742418} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &79742421 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79742418} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 180} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!224 &79742422 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79742418} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 675585591} + - {fileID: 1671985497} + - {fileID: 751714469} + - {fileID: 220965954} + m_Father: {fileID: 2069689066} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &166432928 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 166432929} + m_Layer: 5 + m_Name: Equipment + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &166432929 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 166432928} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 825830643} + - {fileID: 1363267880} + - {fileID: 1375236539} + - {fileID: 1187556420} + - {fileID: 551818479} + - {fileID: 212613716} + m_Father: {fileID: 1671985497} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &212613715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 212613716} + - component: {fileID: 212613718} + - component: {fileID: 212613717} + - component: {fileID: 212613719} + - component: {fileID: 212613720} + m_Layer: 5 + m_Name: Shoes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &212613716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212613715} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1656797132} + m_Father: {fileID: 166432929} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: -377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &212613717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212613715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &212613718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212613715} + m_CullTransparentMesh: 1 +--- !u!114 &212613719 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212613715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 212613717} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1375236543} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &212613720 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 212613715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 5 + equipmentNum: -1 +--- !u!1 &220965953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 220965954} + m_Layer: 5 + m_Name: EquipmentDescription + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &220965954 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 220965953} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 516842930} + - {fileID: 1447067383} + - {fileID: 548162607} + - {fileID: 517710797} + m_Father: {fileID: 79742422} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &280241843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 280241844} + - component: {fileID: 280241846} + - component: {fileID: 280241845} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &280241844 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280241843} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1375236539} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &280241845 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280241843} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &280241846 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280241843} + m_CullTransparentMesh: 1 +--- !u!1 &516842929 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 516842930} + - component: {fileID: 516842932} + - component: {fileID: 516842931} + m_Layer: 5 + m_Name: 'Frame ' + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &516842930 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516842929} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 220965954} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 564.16675, y: -20} + m_SizeDelta: {x: 782.8271, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &516842931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516842929} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &516842932 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516842929} + m_CullTransparentMesh: 1 +--- !u!1 &517710796 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 517710797} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517710797 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 517710796} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1993393109} + - {fileID: 709282508} + - {fileID: 738032749} + - {fileID: 1220524077} + m_Father: {fileID: 220965954} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.17, y: -98} + m_SizeDelta: {x: 532.0713, y: 365.2817} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &548162606 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 548162607} + m_Layer: 5 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &548162607 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 548162606} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1409086437} + - {fileID: 1450462475} + - {fileID: 772856960} + m_Father: {fileID: 220965954} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.1699, y: 317} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &551818478 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 551818479} + - component: {fileID: 551818481} + - component: {fileID: 551818480} + - component: {fileID: 551818482} + - component: {fileID: 551818483} + m_Layer: 5 + m_Name: Pet + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551818479 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551818478} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1803389986} + m_Father: {fileID: 166432929} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -445, y: -110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &551818480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551818478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &551818481 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551818478} + m_CullTransparentMesh: 1 +--- !u!114 &551818482 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551818478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 551818480} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1375236543} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &551818483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551818478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 4 + equipmentNum: -1 +--- !u!1 &632720401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 632720402} + - component: {fileID: 632720404} + - component: {fileID: 632720403} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &632720402 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632720401} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.20905311} + m_Children: [] + m_Father: {fileID: 1530375688} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0.000015258789} + m_SizeDelta: {x: 1261.5684, y: 1116.8076} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &632720403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632720401} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Start Level +--- !u!222 &632720404 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632720401} + m_CullTransparentMesh: 1 +--- !u!1 &652074393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 652074394} + - component: {fileID: 652074396} + - component: {fileID: 652074395} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &652074394 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 652074393} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.61839056} + m_Children: [] + m_Father: {fileID: 679233476} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.21838379, y: 0.10920715} + m_SizeDelta: {x: 585.4558, y: 292.7169} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &652074395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 652074393} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 300 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "To Invent\u043Ery" +--- !u!222 &652074396 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 652074393} + m_CullTransparentMesh: 1 +--- !u!1 &675585590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 675585591} + - component: {fileID: 675585593} + - component: {fileID: 675585592} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &675585591 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 675585590} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 79742422} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.0028046, y: 0.00087237} + m_SizeDelta: {x: 1920, y: 1080} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &675585592 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 675585590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ff90a3fa662e2924882fb7ebc5f06941, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &675585593 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 675585590} + m_CullTransparentMesh: 1 +--- !u!1 &679233475 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 679233476} + - component: {fileID: 679233480} + - component: {fileID: 679233479} + - component: {fileID: 679233478} + - component: {fileID: 679233477} + m_Layer: 5 + m_Name: InventoryButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &679233476 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679233475} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 652074394} + m_Father: {fileID: 1422958042} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -242} + m_SizeDelta: {x: 1600, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &679233477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679233475} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7feed73df43e92845adff59e1a91f2d8, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasToOn: {fileID: 79742418} + canvasToOff: {fileID: 1422958041} +--- !u!114 &679233478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679233475} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 679233479} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 679233477} + m_TargetAssemblyTypeName: CanvasChanger, Assembly-CSharp + m_MethodName: ChangeCanvas + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &679233479 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679233475} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &679233480 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679233475} + m_CullTransparentMesh: 1 +--- !u!1 &709282507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 709282508} + - component: {fileID: 709282510} + - component: {fileID: 709282509} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &709282508 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709282507} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 517710797} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.0010834, y: -0.00043488} + m_SizeDelta: {x: 532.08, y: 365.28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &709282509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709282507} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &709282510 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709282507} + m_CullTransparentMesh: 1 +--- !u!1 &712275299 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 712275300} + - component: {fileID: 712275302} + - component: {fileID: 712275301} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &712275300 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712275299} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 751714469} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -22.262, y: -20} + m_SizeDelta: {x: 712.702, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &712275301 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712275299} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &712275302 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712275299} + m_CullTransparentMesh: 1 +--- !u!1 &738032748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 738032749} + - component: {fileID: 738032751} + - component: {fileID: 738032750} + m_Layer: 5 + m_Name: Description + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &738032749 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 738032748} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 517710797} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -1.2418, y: 3.3745} + m_SizeDelta: {x: 468.9182, y: 330.9774} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &738032750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 738032748} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Something about equipment +--- !u!222 &738032751 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 738032748} + m_CullTransparentMesh: 1 +--- !u!1 &751714468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 751714469} + m_Layer: 5 + m_Name: InventoryList + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &751714469 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751714468} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 712275300} + - {fileID: 1898368029} + m_Father: {fileID: 79742422} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &772856959 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 772856960} + - component: {fileID: 772856962} + - component: {fileID: 772856961} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &772856960 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 772856959} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 548162607} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.39478, y: 3.9417} + m_SizeDelta: {x: 250, y: 257.88} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &772856961 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 772856959} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &772856962 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 772856959} + m_CullTransparentMesh: 1 +--- !u!1 &825830642 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 825830643} + - component: {fileID: 825830646} + - component: {fileID: 825830645} + - component: {fileID: 825830644} + - component: {fileID: 825830647} + m_Layer: 5 + m_Name: Hat + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &825830643 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825830642} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1613499973} + m_Father: {fileID: 166432929} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: 377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &825830644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825830642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 825830645} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 825830647} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &825830645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825830642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &825830646 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825830642} + m_CullTransparentMesh: 1 +--- !u!114 &825830647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825830642} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 0 + equipmentNum: -1 +--- !u!1 &837318551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 837318552} + - component: {fileID: 837318554} + - component: {fileID: 837318553} + m_Layer: 5 + m_Name: Frame + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &837318552 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837318551} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1671985497} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: -540, y: -20} + m_SizeDelta: {x: 718.5554, y: 1220} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &837318553 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837318551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &837318554 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837318551} + m_CullTransparentMesh: 1 +--- !u!1 &874489552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 874489555} + - component: {fileID: 874489554} + - component: {fileID: 874489553} + - component: {fileID: 874489556} + - component: {fileID: 874489557} + - component: {fileID: 874489558} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &874489553 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874489552} + m_Enabled: 1 +--- !u!20 &874489554 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874489552} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &874489555 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874489552} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &874489556 +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: d4ce3529c31929f42bea98b7e58d93de, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &874489557 +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: 6b702bb7d4d345f4a81b2a1cd9ddd648, type: 3} + m_Name: + m_EditorClassIdentifier: + allEquipment: + - {fileID: 4068511147674530333, guid: ca90993e80150994e905b83ffd525f53, type: 3} + - {fileID: 726422991776119786, guid: ffde653421f3d064cbdfc3b4571a5a2a, type: 3} + playerEquipment: [] + imagePlug: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + playerPlace: + - {fileID: 825830644} + - {fileID: 1363267881} + - {fileID: 1375236540} + - {fileID: 1187556423} + - {fileID: 551818482} + - {fileID: 212613719} + lastCardNum: 0 +--- !u!114 &874489558 +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: d09743e90e31cbf44b09c9355d4ba732, type: 3} + m_Name: + m_EditorClassIdentifier: + localName: {fileID: 1447067384} + desqription: {fileID: 738032750} + icon: {fileID: 1450462476} + AddButton: {fileID: 1220524078} +--- !u!1 &1002328282 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1002328283} + - component: {fileID: 1002328285} + - component: {fileID: 1002328284} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1002328283 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1002328282} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1363267880} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1002328284 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1002328282} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1002328285 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1002328282} + m_CullTransparentMesh: 1 +--- !u!1 &1187556419 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1187556420} + - component: {fileID: 1187556422} + - component: {fileID: 1187556421} + - component: {fileID: 1187556423} + - component: {fileID: 1187556424} + m_Layer: 5 + m_Name: Weapon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1187556420 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187556419} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1449627096} + m_Father: {fileID: 166432929} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -810, y: -110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1187556421 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187556419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1187556422 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187556419} + m_CullTransparentMesh: 1 +--- !u!114 &1187556423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187556419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1187556421} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1375236543} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1187556424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187556419} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 3 + equipmentNum: -1 +--- !u!1 &1220524076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1220524077} + - component: {fileID: 1220524080} + - component: {fileID: 1220524079} + - component: {fileID: 1220524078} + - component: {fileID: 1220524081} + m_Layer: 5 + m_Name: AddButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1220524077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220524076} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1981398486} + m_Father: {fileID: 517710797} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -272} + m_SizeDelta: {x: 305.8154, y: 96.427} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1220524078 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220524076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1220524079} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1220524081} + m_TargetAssemblyTypeName: AddEquipment, Assembly-CSharp + m_MethodName: AddOrRemove + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1220524079 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220524076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1220524080 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220524076} + m_CullTransparentMesh: 1 +--- !u!114 &1220524081 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220524076} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2515a089f77897f4ea7e039866ece790, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1363267879 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1363267880} + - component: {fileID: 1363267883} + - component: {fileID: 1363267882} + - component: {fileID: 1363267881} + - component: {fileID: 1363267884} + m_Layer: 5 + m_Name: Gloves + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1363267880 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363267879} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1002328283} + m_Father: {fileID: 166432929} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -810, y: 110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1363267881 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363267879} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1363267882} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1375236543} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1363267882 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363267879} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1363267883 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363267879} + m_CullTransparentMesh: 1 +--- !u!114 &1363267884 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363267879} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 1 + equipmentNum: -1 +--- !u!1 &1375236538 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1375236539} + - component: {fileID: 1375236542} + - component: {fileID: 1375236541} + - component: {fileID: 1375236540} + - component: {fileID: 1375236543} + m_Layer: 5 + m_Name: Armor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1375236539 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375236538} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 280241844} + m_Father: {fileID: 166432929} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -445, y: 110} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1375236540 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375236538} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1375236541} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1375236543} + m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp + m_MethodName: EquipmentAbout + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1375236541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375236538} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1375236542 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375236538} + m_CullTransparentMesh: 1 +--- !u!114 &1375236543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1375236538} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} + m_Name: + m_EditorClassIdentifier: + currentNum: 2 + equipmentNum: -1 +--- !u!1 &1409086436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1409086437} + - component: {fileID: 1409086439} + - component: {fileID: 1409086438} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1409086437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409086436} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 548162607} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.000061035156, y: 0} + m_SizeDelta: {x: 250, y: 250} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1409086438 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409086436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.85882354, b: 0.7019608, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1409086439 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409086436} + m_CullTransparentMesh: 1 +--- !u!1 &1422958041 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1422958042} + - component: {fileID: 1422958045} + - component: {fileID: 1422958044} + - component: {fileID: 1422958043} + m_Layer: 5 + m_Name: MainCanvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1422958042 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422958041} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1530375688} + - {fileID: 679233476} + m_Father: {fileID: 2069689066} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1422958043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422958041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1422958044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422958041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &1422958045 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422958041} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1 &1447067382 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1447067383} + - component: {fileID: 1447067385} + - component: {fileID: 1447067384} + m_Layer: 5 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1447067383 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1447067382} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 220965954} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 614.1699, y: 150} + m_SizeDelta: {x: 219.47, y: 61.8822} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1447067384 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1447067382} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 300 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Name +--- !u!222 &1447067385 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1447067382} + m_CullTransparentMesh: 1 +--- !u!1 &1449627095 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449627096} + - component: {fileID: 1449627098} + - component: {fileID: 1449627097} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1449627096 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449627095} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1187556420} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1449627097 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449627095} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1449627098 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449627095} + m_CullTransparentMesh: 1 +--- !u!1 &1450462474 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1450462475} + - component: {fileID: 1450462477} + - component: {fileID: 1450462476} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1450462475 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1450462474} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 548162607} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.3948, y: -0.7896} + m_SizeDelta: {x: 227.1264, y: 232.654} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1450462476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1450462474} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 1c5bb4d795a592b48a9500fdc8e9a61e, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1450462477 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1450462474} + m_CullTransparentMesh: 1 +--- !u!1 &1494223989 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1494223992} + - component: {fileID: 1494223991} + - component: {fileID: 1494223990} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1494223990 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1494223989} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1494223991 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1494223989} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1494223992 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1494223989} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -1.1494696, y: -0.52587074, z: 0.24618196} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2069689066} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1530375687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1530375688} + - component: {fileID: 1530375691} + - component: {fileID: 1530375690} + - component: {fileID: 1530375689} + m_Layer: 5 + m_Name: Start + m_TagString: Untagged + m_Icon: {fileID: -5397416234189338067, guid: 0000000000000000d000000000000000, type: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1530375688 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1530375687} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 632720402} + m_Father: {fileID: 1422958042} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 232} + m_SizeDelta: {x: 1600, y: 300} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1530375689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1530375687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1530375690} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 874489556} + m_TargetAssemblyTypeName: SceneLoader, Assembly-CSharp + m_MethodName: ChangeScene + m_Mode: 5 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: BattleScene + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1530375690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1530375687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1530375691 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1530375687} + m_CullTransparentMesh: 1 +--- !u!1 &1613499972 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1613499973} + - component: {fileID: 1613499975} + - component: {fileID: 1613499974} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1613499973 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1613499972} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 825830643} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1613499974 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1613499972} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1613499975 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1613499972} + m_CullTransparentMesh: 1 +--- !u!1 &1656797131 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1656797132} + - component: {fileID: 1656797134} + - component: {fileID: 1656797133} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1656797132 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656797131} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 212613716} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1656797133 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656797131} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1656797134 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656797131} + m_CullTransparentMesh: 1 +--- !u!1 &1671985496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1671985497} + m_Layer: 5 + m_Name: PlayerInv + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1671985497 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671985496} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2051496100} + - {fileID: 837318552} + - {fileID: 166432929} + - {fileID: 1714222704} + m_Father: {fileID: 79742422} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 166.9781, y: 203.2785} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1714222703 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1714222704} + - component: {fileID: 1714222708} + - component: {fileID: 1714222707} + - component: {fileID: 1714222706} + - component: {fileID: 1714222705} + m_Layer: 5 + m_Name: Back + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1714222704 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1714222703} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1769622003} + m_Father: {fileID: 1671985497} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: -755, y: 390} + m_SizeDelta: {x: 216.43, y: 60.2327} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1714222705 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1714222703} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7feed73df43e92845adff59e1a91f2d8, type: 3} + m_Name: + m_EditorClassIdentifier: + canvasToOn: {fileID: 1422958045} + canvasToOff: {fileID: 79742419} +--- !u!114 &1714222706 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1714222703} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1714222707} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 1714222705} + m_TargetAssemblyTypeName: CanvasChanger, Assembly-CSharp + m_MethodName: ChangeCanvas + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &1714222707 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1714222703} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1714222708 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1714222703} + m_CullTransparentMesh: 1 +--- !u!1 &1769622002 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769622003} + - component: {fileID: 1769622005} + - component: {fileID: 1769622004} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1769622003 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769622002} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1714222704} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1769622004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769622002} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 200 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Back +--- !u!222 &1769622005 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769622002} + m_CullTransparentMesh: 1 +--- !u!1 &1803389985 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1803389986} + - component: {fileID: 1803389988} + - component: {fileID: 1803389987} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1803389986 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803389985} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 551818479} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1803389987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803389985} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1803389988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803389985} + m_CullTransparentMesh: 1 +--- !u!1 &1898368028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1898368029} + - component: {fileID: 1898368030} + m_Layer: 5 + m_Name: ButtonsParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1898368029 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898368028} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 751714469} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -208, y: 377} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1898368030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898368028} + 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 + page: 0 +--- !u!1 &1981398485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1981398486} + - component: {fileID: 1981398488} + - component: {fileID: 1981398487} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1981398486 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981398485} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1220524077} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1981398487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981398485} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 30 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Add +--- !u!222 &1981398488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1981398485} + m_CullTransparentMesh: 1 +--- !u!1 &1993393108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1993393109} + - component: {fileID: 1993393111} + - component: {fileID: 1993393110} + m_Layer: 5 + m_Name: Bg + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1993393109 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993393108} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 517710797} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.0021744, y: -0.00043488} + m_SizeDelta: {x: 532.08, y: 365.28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1993393110 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993393108} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607844, g: 0.8588236, b: 0.7019608, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1993393111 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993393108} + m_CullTransparentMesh: 1 +--- !u!1 &2051496099 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2051496100} + - component: {fileID: 2051496102} + - component: {fileID: 2051496101} + m_Layer: 5 + m_Name: Player + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2051496100 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2051496099} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2.9846, y: 4.4395924, z: 2.9846} + m_Children: [] + m_Father: {fileID: 1671985497} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -636, y: 0} + m_SizeDelta: {x: 192.1169, y: 200.8572} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2051496101 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2051496099} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.25490198} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cbff014c4cf09684c84284e36be315ac, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2051496102 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2051496099} + m_CullTransparentMesh: 1 +--- !u!1 &2069689065 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2069689066} + m_Layer: 0 + m_Name: UI + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2069689066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2069689065} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1494223992} + - {fileID: 1422958042} + - {fileID: 79742422} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Scenes/Inventory.unity.meta b/Assets/Scenes/Inventory.unity.meta new file mode 100644 index 00000000..f5f094cf --- /dev/null +++ b/Assets/Scenes/Inventory.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c0f2ab0c52da4e04fa0f6cb87378dd5a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/MainMenu.unity b/Assets/Scenes/MainMenu.unity index 22cdd25b..ea21819a 100644 --- a/Assets/Scenes/MainMenu.unity +++ b/Assets/Scenes/MainMenu.unity @@ -123,7 +123,7 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &79742418 +--- !u!1 &565590511 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -131,715 +131,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 79742422} - - component: {fileID: 79742419} - - component: {fileID: 79742421} - - component: {fileID: 79742420} - m_Layer: 5 - m_Name: InventoryCanvas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!223 &79742419 -Canvas: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 79742418} - m_Enabled: 1 - serializedVersion: 3 - m_RenderMode: 0 - m_Camera: {fileID: 0} - m_PlaneDistance: 100 - m_PixelPerfect: 0 - m_ReceivesEvents: 1 - m_OverrideSorting: 0 - m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 - m_AdditionalShaderChannelsFlag: 0 - m_SortingLayerID: 0 - m_SortingOrder: 0 - m_TargetDisplay: 0 ---- !u!114 &79742420 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 79742418} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreReversedGraphics: 1 - m_BlockingObjects: 0 - m_BlockingMask: - serializedVersion: 2 - m_Bits: 4294967295 ---- !u!114 &79742421 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 79742418} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_UiScaleMode: 1 - m_ReferencePixelsPerUnit: 100 - m_ScaleFactor: 1 - m_ReferenceResolution: {x: 1920, y: 180} - m_ScreenMatchMode: 0 - m_MatchWidthOrHeight: 0 - m_PhysicalUnit: 3 - m_FallbackScreenDPI: 96 - m_DefaultSpriteDPI: 96 - m_DynamicPixelsPerUnit: 1 - m_PresetInfoIsWorld: 0 ---- !u!224 &79742422 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 79742418} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} - m_Children: - - {fileID: 675585591} - - {fileID: 1671985497} - - {fileID: 751714469} - - {fileID: 220965954} - m_Father: {fileID: 2069689066} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!1 &166432928 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 166432929} - m_Layer: 5 - m_Name: Equipment - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &166432929 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 166432928} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 825830643} - - {fileID: 1363267880} - - {fileID: 1375236539} - - {fileID: 1187556420} - - {fileID: 551818479} - - {fileID: 212613716} - m_Father: {fileID: 1671985497} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &212613715 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 212613716} - - component: {fileID: 212613718} - - component: {fileID: 212613717} - - component: {fileID: 212613719} - - component: {fileID: 212613720} - m_Layer: 5 - m_Name: Shoes - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &212613716 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 212613715} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1656797132} - m_Father: {fileID: 166432929} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -636, y: -377} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &212613717 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 212613715} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &212613718 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 212613715} - m_CullTransparentMesh: 1 ---- !u!114 &212613719 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 212613715} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 212613717} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1375236543} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &212613720 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 212613715} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 5 - equipmentNum: -1 ---- !u!1 &220965953 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 220965954} - m_Layer: 5 - m_Name: EquipmentDescription - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &220965954 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 220965953} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 516842930} - - {fileID: 1447067383} - - {fileID: 548162607} - - {fileID: 517710797} - m_Father: {fileID: 79742422} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &280241843 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 280241844} - - component: {fileID: 280241846} - - component: {fileID: 280241845} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &280241844 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 280241843} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1375236539} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &280241845 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 280241843} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &280241846 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 280241843} - m_CullTransparentMesh: 1 ---- !u!1 &516842929 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 516842930} - - component: {fileID: 516842932} - - component: {fileID: 516842931} - m_Layer: 5 - m_Name: 'Frame ' - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &516842930 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 516842929} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 220965954} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: 564.16675, y: -20} - m_SizeDelta: {x: 782.8271, y: 1220} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &516842931 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 516842929} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &516842932 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 516842929} - m_CullTransparentMesh: 1 ---- !u!1 &517710796 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 517710797} - m_Layer: 5 - m_Name: Description - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &517710797 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 517710796} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1993393109} - - {fileID: 709282508} - - {fileID: 738032749} - - {fileID: 1220524077} - m_Father: {fileID: 220965954} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 614.17, y: -98} - m_SizeDelta: {x: 532.0713, y: 365.2817} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &548162606 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 548162607} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &548162607 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 548162606} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1409086437} - - {fileID: 1450462475} - - {fileID: 772856960} - m_Father: {fileID: 220965954} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 614.1699, y: 317} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &551818478 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 551818479} - - component: {fileID: 551818481} - - component: {fileID: 551818480} - - component: {fileID: 551818482} - - component: {fileID: 551818483} - m_Layer: 5 - m_Name: Pet - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &551818479 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551818478} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1803389986} - m_Father: {fileID: 166432929} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -445, y: -110} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &551818480 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551818478} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &551818481 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551818478} - m_CullTransparentMesh: 1 ---- !u!114 &551818482 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551818478} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 551818480} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1375236543} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &551818483 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551818478} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 4 - equipmentNum: -1 ---- !u!1 &632720401 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 632720402} - - component: {fileID: 632720404} - - component: {fileID: 632720403} + - component: {fileID: 565590512} + - component: {fileID: 565590514} + - component: {fileID: 565590513} m_Layer: 5 m_Name: Text m_TagString: Untagged @@ -847,32 +141,32 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &632720402 +--- !u!224 &565590512 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 632720401} + m_GameObject: {fileID: 565590511} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.61839056} m_Children: [] - m_Father: {fileID: 1530375688} + m_Father: {fileID: 572215991} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: 0.21838379, y: 0.10920715} + m_SizeDelta: {x: 585.4558, y: 292.7169} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &632720403 +--- !u!114 &565590513 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 632720401} + m_GameObject: {fileID: 565590511} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} @@ -887,28 +181,28 @@ MonoBehaviour: m_PersistentCalls: m_Calls: [] m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 14 - m_FontStyle: 0 + m_Font: {fileID: 12800000, guid: 1adb65df912c9a74bbbaae177c2372d9, type: 3} + m_FontSize: 300 + m_FontStyle: 1 m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 + m_MinSize: 3 + m_MaxSize: 300 m_Alignment: 4 m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: Start Level ---- !u!222 &632720404 + m_Text: Go to mission +--- !u!222 &565590514 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 632720401} + m_GameObject: {fileID: 565590511} m_CullTransparentMesh: 1 ---- !u!1 &652074393 +--- !u!1 &572215990 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -916,213 +210,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 652074394} - - component: {fileID: 652074396} - - component: {fileID: 652074395} + - component: {fileID: 572215991} + - component: {fileID: 572215994} + - component: {fileID: 572215993} + - component: {fileID: 572215992} m_Layer: 5 - m_Name: Text + m_Name: Go to mission m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &652074394 +--- !u!224 &572215991 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 652074393} + m_GameObject: {fileID: 572215990} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 679233476} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &652074395 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 652074393} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 14 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "To Invent\u043Ery" ---- !u!222 &652074396 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 652074393} - m_CullTransparentMesh: 1 ---- !u!1 &675585590 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 675585591} - - component: {fileID: 675585593} - - component: {fileID: 675585592} - m_Layer: 5 - m_Name: Bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &675585591 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 675585590} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 79742422} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0.0028046, y: 0.00087237} - m_SizeDelta: {x: 1920, y: 1080} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &675585592 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 675585590} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: ff90a3fa662e2924882fb7ebc5f06941, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &675585593 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 675585590} - m_CullTransparentMesh: 1 ---- !u!1 &679233475 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 679233476} - - component: {fileID: 679233480} - - component: {fileID: 679233479} - - component: {fileID: 679233478} - - component: {fileID: 679233477} - m_Layer: 5 - m_Name: InventoryButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &679233476 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 679233475} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0.3945, y: 0.3945, z: 0.3945} m_Children: - - {fileID: 652074394} - m_Father: {fileID: 1422958042} + - {fileID: 565590512} + m_Father: {fileID: 1546570636} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -80} - m_SizeDelta: {x: 160, y: 30} + m_AnchoredPosition: {x: -618, y: -289} + m_SizeDelta: {x: 1600, y: 300} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &679233477 +--- !u!114 &572215992 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 679233475} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 7feed73df43e92845adff59e1a91f2d8, type: 3} - m_Name: - m_EditorClassIdentifier: - canvasToOn: {fileID: 79742419} - canvasToOff: {fileID: 1422958045} ---- !u!114 &679233478 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 679233475} + m_GameObject: {fileID: 572215990} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -1156,29 +281,29 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 679233479} + m_TargetGraphic: {fileID: 572215993} m_OnClick: m_PersistentCalls: m_Calls: - - m_Target: {fileID: 679233477} - m_TargetAssemblyTypeName: CanvasChanger, Assembly-CSharp - m_MethodName: ChangeCanvas - m_Mode: 1 + - m_Target: {fileID: 1963279108} + m_TargetAssemblyTypeName: MainCamera, Assembly-CSharp + m_MethodName: GoToMission + m_Mode: 2 m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_ObjectArgument: {fileID: 11400000, guid: 0039c482e027b964ba368d339754bb7f, type: 2} + m_ObjectArgumentAssemblyTypeName: MissionConfig, Assembly-CSharp m_IntArgument: 0 m_FloatArgument: 0 m_StringArgument: m_BoolArgument: 0 m_CallState: 2 ---- !u!114 &679233479 +--- !u!114 &572215993 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 679233475} + m_GameObject: {fileID: 572215990} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -1202,15 +327,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &679233480 +--- !u!222 &572215994 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 679233475} + m_GameObject: {fileID: 572215990} m_CullTransparentMesh: 1 ---- !u!1 &709282507 +--- !u!1 &745402897 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1218,228 +343,65 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 709282508} - - component: {fileID: 709282510} - - component: {fileID: 709282509} - m_Layer: 5 - m_Name: Frame + - component: {fileID: 745402900} + - component: {fileID: 745402899} + - component: {fileID: 745402898} + m_Layer: 0 + m_Name: EventSystem m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &709282508 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 709282507} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 517710797} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0.0010834, y: -0.00043488} - m_SizeDelta: {x: 532.08, y: 365.28} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &709282509 +--- !u!114 &745402898 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 709282507} + m_GameObject: {fileID: 745402897} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &709282510 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 709282507} - m_CullTransparentMesh: 1 ---- !u!1 &712275299 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 712275300} - - component: {fileID: 712275302} - - component: {fileID: 712275301} - m_Layer: 5 - m_Name: Frame - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &712275300 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712275299} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 751714469} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -22.262, y: -20} - m_SizeDelta: {x: 712.702, y: 1220} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &712275301 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &745402899 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712275299} + m_GameObject: {fileID: 745402897} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &712275302 -CanvasRenderer: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &745402900 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712275299} - m_CullTransparentMesh: 1 ---- !u!1 &738032748 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 738032749} - - component: {fileID: 738032751} - - component: {fileID: 738032750} - m_Layer: 5 - m_Name: Description - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &738032749 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 738032748} + m_GameObject: {fileID: 745402897} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 517710797} + m_Father: {fileID: 0} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -1.2418, y: 3.3745} - m_SizeDelta: {x: 468.9182, y: 330.9774} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &738032750 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 738032748} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: 0, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 30 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 0 - m_MaxSize: 40 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Something about equipment ---- !u!222 &738032751 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 738032748} - m_CullTransparentMesh: 1 ---- !u!1 &751714468 +--- !u!1 &1284460229 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1447,157 +409,44 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 751714469} + - component: {fileID: 1284460230} + - component: {fileID: 1284460233} + - component: {fileID: 1284460232} + - component: {fileID: 1284460231} m_Layer: 5 - m_Name: InventoryList + m_Name: EndlessGame m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &751714469 +--- !u!224 &1284460230 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 751714468} + m_GameObject: {fileID: 1284460229} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0.3945, y: 0.3945, z: 0.3945} m_Children: - - {fileID: 712275300} - - {fileID: 1898368029} - m_Father: {fileID: 79742422} + - {fileID: 1846213569} + m_Father: {fileID: 1546570636} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 100} + m_AnchoredPosition: {x: -618, y: -440} + m_SizeDelta: {x: 1600, y: 300} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &772856959 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 772856960} - - component: {fileID: 772856962} - - component: {fileID: 772856961} - m_Layer: 5 - m_Name: Frame - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &772856960 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 772856959} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 548162607} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0.39478, y: 3.9417} - m_SizeDelta: {x: 250, y: 257.88} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &772856961 +--- !u!114 &1284460231 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 772856959} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &772856962 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 772856959} - m_CullTransparentMesh: 1 ---- !u!1 &825830642 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 825830643} - - component: {fileID: 825830646} - - component: {fileID: 825830645} - - component: {fileID: 825830644} - - component: {fileID: 825830647} - m_Layer: 5 - m_Name: Hat - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &825830643 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 825830642} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1613499973} - m_Father: {fileID: 166432929} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -636, y: 377} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &825830644 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 825830642} + m_GameObject: {fileID: 1284460229} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} @@ -1631,13 +480,13 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 825830645} + m_TargetGraphic: {fileID: 1284460232} m_OnClick: m_PersistentCalls: m_Calls: - - m_Target: {fileID: 825830647} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout + - m_Target: {fileID: 1963279108} + m_TargetAssemblyTypeName: MainCamera, Assembly-CSharp + m_MethodName: EndlessGame m_Mode: 1 m_Arguments: m_ObjectArgument: {fileID: 0} @@ -1647,13 +496,13 @@ MonoBehaviour: m_StringArgument: m_BoolArgument: 0 m_CallState: 2 ---- !u!114 &825830645 +--- !u!114 &1284460232 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 825830642} + m_GameObject: {fileID: 1284460229} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -1667,8 +516,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -1677,29 +526,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &825830646 +--- !u!222 &1284460233 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 825830642} + m_GameObject: {fileID: 1284460229} m_CullTransparentMesh: 1 ---- !u!114 &825830647 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 825830642} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 0 - equipmentNum: -1 ---- !u!1 &837318551 +--- !u!1 &1546570632 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1707,45 +542,227 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 837318552} - - component: {fileID: 837318554} - - component: {fileID: 837318553} + - component: {fileID: 1546570636} + - component: {fileID: 1546570635} + - component: {fileID: 1546570634} + - component: {fileID: 1546570633} m_Layer: 5 - m_Name: Frame + m_Name: UI m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &837318552 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 837318551} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1671985497} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: -540, y: -20} - m_SizeDelta: {x: 718.5554, y: 1220} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &837318553 +--- !u!114 &1546570633 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 837318551} + m_GameObject: {fileID: 1546570632} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1546570634 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1546570632} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &1546570635 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1546570632} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 25 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1546570636 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1546570632} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1925671597} + - {fileID: 572215991} + - {fileID: 1284460230} + - {fileID: 2010774228} + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1846213568 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1846213569} + - component: {fileID: 1846213571} + - component: {fileID: 1846213570} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1846213569 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846213568} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.6, y: 0.6, z: 0.61839056} + m_Children: [] + m_Father: {fileID: 1284460230} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.0004272461, y: 0.10920715} + m_SizeDelta: {x: 1066.7, y: 292.717} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1846213570 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846213568} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 12800000, guid: 1adb65df912c9a74bbbaae177c2372d9, type: 3} + m_FontSize: 300 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Endless game +--- !u!222 &1846213571 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846213568} + m_CullTransparentMesh: 1 +--- !u!1 &1925671596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925671597} + - component: {fileID: 1925671599} + - component: {fileID: 1925671598} + m_Layer: 5 + m_Name: Name + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1925671597 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925671596} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.48443025, y: 0.48443025, z: 0.49927846} + m_Children: [] + m_Father: {fileID: 1546570636} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -373.35, y: 374} + m_SizeDelta: {x: 746.69995, y: -487.283} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1925671598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925671596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -1756,25 +773,29 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d6607576b44d8544aa193b3c93c84130, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &837318554 + m_FontData: + m_Font: {fileID: 12800000, guid: 1adb65df912c9a74bbbaae177c2372d9, type: 3} + m_FontSize: 300 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 3 + m_MaxSize: 300 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Project Omega +--- !u!222 &1925671599 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 837318551} + m_GameObject: {fileID: 1925671596} m_CullTransparentMesh: 1 ---- !u!1 &874489552 +--- !u!1 &1963279104 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1782,12 +803,10 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 874489555} - - component: {fileID: 874489554} - - component: {fileID: 874489553} - - component: {fileID: 874489556} - - component: {fileID: 874489557} - - component: {fileID: 874489558} + - component: {fileID: 1963279107} + - component: {fileID: 1963279106} + - component: {fileID: 1963279105} + - component: {fileID: 1963279108} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -1795,25 +814,25 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!81 &874489553 +--- !u!81 &1963279105 AudioListener: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 874489552} + m_GameObject: {fileID: 1963279104} m_Enabled: 1 ---- !u!20 &874489554 +--- !u!20 &1963279106 Camera: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 874489552} + m_GameObject: {fileID: 1963279104} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_BackGroundColor: {r: 0.08202209, g: 0.08314349, b: 0.084905684, a: 0} m_projectionMatrixMode: 1 m_GateFitMode: 2 m_FOVAxisMode: 0 @@ -1846,13 +865,13 @@ Camera: m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 ---- !u!4 &874489555 +--- !u!4 &1963279107 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 874489552} + m_GameObject: {fileID: 1963279104} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -10} m_LocalScale: {x: 1, y: 1, z: 1} @@ -1860,60 +879,19 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &874489556 +--- !u!114 &1963279108 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 874489552} + m_GameObject: {fileID: 1963279104} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d4ce3529c31929f42bea98b7e58d93de, type: 3} + m_Script: {fileID: 11500000, guid: 92d6b3dda9f50f74ab31bbba09e20198, type: 3} m_Name: m_EditorClassIdentifier: ---- !u!114 &874489557 -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: 6b702bb7d4d345f4a81b2a1cd9ddd648, type: 3} - m_Name: - m_EditorClassIdentifier: - allEquipment: - - {fileID: 4068511147674530333, guid: ca90993e80150994e905b83ffd525f53, type: 3} - - {fileID: 726422991776119786, guid: ffde653421f3d064cbdfc3b4571a5a2a, type: 3} - playerEquipment: [] - imagePlug: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - playerPlace: - - {fileID: 825830644} - - {fileID: 1363267881} - - {fileID: 1375236540} - - {fileID: 1187556423} - - {fileID: 551818482} - - {fileID: 212613719} - lastCardNum: 0 ---- !u!114 &874489558 -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: d09743e90e31cbf44b09c9355d4ba732, type: 3} - m_Name: - m_EditorClassIdentifier: - localName: {fileID: 1447067384} - desqription: {fileID: 738032750} - icon: {fileID: 1450462476} - AddButton: {fileID: 1220524078} ---- !u!1 &1002328282 +--- !u!1 &2010774227 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1921,1655 +899,49 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1002328283} - - component: {fileID: 1002328285} - - component: {fileID: 1002328284} + - component: {fileID: 2010774228} + - component: {fileID: 2010774230} + - component: {fileID: 2010774229} m_Layer: 5 - m_Name: Image + m_Name: Prototype m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1002328283 +--- !u!224 &2010774228 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002328282} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 2010774227} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0.1054505, y: 0.1054505, z: 0.10868265} m_Children: [] - m_Father: {fileID: 1363267880} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1002328284 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002328282} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1002328285 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1002328282} - m_CullTransparentMesh: 1 ---- !u!1 &1187556419 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1187556420} - - component: {fileID: 1187556422} - - component: {fileID: 1187556421} - - component: {fileID: 1187556423} - - component: {fileID: 1187556424} - m_Layer: 5 - m_Name: Weapon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1187556420 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1187556419} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1449627096} - m_Father: {fileID: 166432929} + m_Father: {fileID: 1546570636} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -810, y: -110} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1187556421 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1187556419} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1187556422 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1187556419} - m_CullTransparentMesh: 1 ---- !u!114 &1187556423 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1187556419} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1187556421} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1375236543} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1187556424 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1187556419} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 3 - equipmentNum: -1 ---- !u!1 &1220524076 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1220524077} - - component: {fileID: 1220524080} - - component: {fileID: 1220524079} - - component: {fileID: 1220524078} - - component: {fileID: 1220524081} - m_Layer: 5 - m_Name: AddButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1220524077 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1220524076} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1981398486} - m_Father: {fileID: 517710797} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -272} - m_SizeDelta: {x: 305.8154, y: 96.427} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1220524078 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1220524076} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1220524079} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1220524081} - m_TargetAssemblyTypeName: AddEquipment, Assembly-CSharp - m_MethodName: AddOrRemove - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1220524079 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1220524076} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1220524080 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1220524076} - m_CullTransparentMesh: 1 ---- !u!114 &1220524081 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1220524076} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2515a089f77897f4ea7e039866ece790, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &1363267879 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1363267880} - - component: {fileID: 1363267883} - - component: {fileID: 1363267882} - - component: {fileID: 1363267881} - - component: {fileID: 1363267884} - m_Layer: 5 - m_Name: Gloves - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1363267880 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363267879} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1002328283} - m_Father: {fileID: 166432929} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -810, y: 110} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1363267881 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363267879} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1363267882} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1375236543} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1363267882 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363267879} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1363267883 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363267879} - m_CullTransparentMesh: 1 ---- !u!114 &1363267884 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363267879} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 1 - equipmentNum: -1 ---- !u!1 &1375236538 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1375236539} - - component: {fileID: 1375236542} - - component: {fileID: 1375236541} - - component: {fileID: 1375236540} - - component: {fileID: 1375236543} - m_Layer: 5 - m_Name: Armor - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1375236539 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1375236538} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 280241844} - m_Father: {fileID: 166432929} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -445, y: 110} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1375236540 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1375236538} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1375236541} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1375236543} - m_TargetAssemblyTypeName: PlaceEquipment, Assembly-CSharp - m_MethodName: EquipmentAbout - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1375236541 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1375236538} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1375236542 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1375236538} - m_CullTransparentMesh: 1 ---- !u!114 &1375236543 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1375236538} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4bdd2e3bc474f8040b76b136ff05dde9, type: 3} - m_Name: - m_EditorClassIdentifier: - currentNum: 2 - equipmentNum: -1 ---- !u!1 &1409086436 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1409086437} - - component: {fileID: 1409086439} - - component: {fileID: 1409086438} - m_Layer: 5 - m_Name: Bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1409086437 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409086436} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 548162607} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0.000061035156, y: 0} - m_SizeDelta: {x: 250, y: 250} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1409086438 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409086436} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9607843, g: 0.85882354, b: 0.7019608, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1409086439 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409086436} - m_CullTransparentMesh: 1 ---- !u!1 &1422958041 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1422958042} - - component: {fileID: 1422958045} - - component: {fileID: 1422958044} - - component: {fileID: 1422958043} - m_Layer: 5 - m_Name: MainCanvas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1422958042 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1422958041} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} - m_Children: - - {fileID: 1530375688} - - {fileID: 679233476} - m_Father: {fileID: 2069689066} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!114 &1422958043 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1422958041} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreReversedGraphics: 1 - m_BlockingObjects: 0 - m_BlockingMask: - serializedVersion: 2 - m_Bits: 4294967295 ---- !u!114 &1422958044 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1422958041} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_UiScaleMode: 1 - m_ReferencePixelsPerUnit: 100 - m_ScaleFactor: 1 - m_ReferenceResolution: {x: 1920, y: 1080} - m_ScreenMatchMode: 0 - m_MatchWidthOrHeight: 0 - m_PhysicalUnit: 3 - m_FallbackScreenDPI: 96 - m_DefaultSpriteDPI: 96 - m_DynamicPixelsPerUnit: 1 - m_PresetInfoIsWorld: 0 ---- !u!223 &1422958045 -Canvas: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1422958041} - m_Enabled: 0 - serializedVersion: 3 - m_RenderMode: 0 - m_Camera: {fileID: 0} - m_PlaneDistance: 100 - m_PixelPerfect: 0 - m_ReceivesEvents: 1 - m_OverrideSorting: 0 - m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 - m_AdditionalShaderChannelsFlag: 0 - m_SortingLayerID: 0 - m_SortingOrder: 0 - m_TargetDisplay: 0 ---- !u!1 &1447067382 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1447067383} - - component: {fileID: 1447067385} - - component: {fileID: 1447067384} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1447067383 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1447067382} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 220965954} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 614.1699, y: 150} - m_SizeDelta: {x: 219.47, y: 61.8822} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1447067384 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1447067382} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: 0, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 50 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 1 - m_MaxSize: 300 - m_Alignment: 1 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Name ---- !u!222 &1447067385 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1447067382} - m_CullTransparentMesh: 1 ---- !u!1 &1449627095 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1449627096} - - component: {fileID: 1449627098} - - component: {fileID: 1449627097} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1449627096 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1449627095} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1187556420} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1449627097 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1449627095} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1449627098 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1449627095} - m_CullTransparentMesh: 1 ---- !u!1 &1450462474 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1450462475} - - component: {fileID: 1450462477} - - component: {fileID: 1450462476} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1450462475 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1450462474} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 548162607} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0.3948, y: -0.7896} - m_SizeDelta: {x: 227.1264, y: 232.654} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1450462476 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1450462474} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 1c5bb4d795a592b48a9500fdc8e9a61e, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1450462477 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1450462474} - m_CullTransparentMesh: 1 ---- !u!1 &1494223989 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1494223992} - - component: {fileID: 1494223991} - - component: {fileID: 1494223990} - m_Layer: 0 - m_Name: EventSystem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1494223990 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494223989} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalAxis: Horizontal - m_VerticalAxis: Vertical - m_SubmitButton: Submit - m_CancelButton: Cancel - m_InputActionsPerSecond: 10 - m_RepeatDelay: 0.5 - m_ForceModuleActive: 0 ---- !u!114 &1494223991 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494223989} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 10 ---- !u!4 &1494223992 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494223989} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: -1.1494696, y: -0.52587074, z: 0.24618196} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2069689066} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1530375687 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1530375688} - - component: {fileID: 1530375691} - - component: {fileID: 1530375690} - - component: {fileID: 1530375689} - m_Layer: 5 - m_Name: Start - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1530375688 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1530375687} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 632720402} - m_Father: {fileID: 1422958042} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 80} - m_SizeDelta: {x: 160, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1530375689 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1530375687} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1530375690} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 874489556} - m_TargetAssemblyTypeName: SceneLoader, Assembly-CSharp - m_MethodName: ChangeScene - m_Mode: 5 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: BattleScene - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1530375690 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1530375687} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1530375691 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1530375687} - m_CullTransparentMesh: 1 ---- !u!1 &1613499972 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1613499973} - - component: {fileID: 1613499975} - - component: {fileID: 1613499974} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1613499973 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1613499972} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 825830643} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1613499974 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1613499972} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1613499975 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1613499972} - m_CullTransparentMesh: 1 ---- !u!1 &1656797131 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1656797132} - - component: {fileID: 1656797134} - - component: {fileID: 1656797133} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1656797132 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1656797131} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 212613716} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1656797133 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1656797131} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1656797134 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1656797131} - m_CullTransparentMesh: 1 ---- !u!1 &1671985496 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1671985497} - m_Layer: 5 - m_Name: PlayerInv - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1671985497 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1671985496} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2051496100} - - {fileID: 837318552} - - {fileID: 166432929} - - {fileID: 1714222704} - m_Father: {fileID: 79742422} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 166.9781, y: 203.2785} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1714222703 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1714222704} - - component: {fileID: 1714222708} - - component: {fileID: 1714222707} - - component: {fileID: 1714222706} - - component: {fileID: 1714222705} - m_Layer: 5 - m_Name: Back - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1714222704 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1714222703} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1769622003} - m_Father: {fileID: 1671985497} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -755, y: 390} - m_SizeDelta: {x: 216.43, y: 60.2327} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1714222705 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1714222703} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 7feed73df43e92845adff59e1a91f2d8, type: 3} - m_Name: - m_EditorClassIdentifier: - canvasToOn: {fileID: 1422958045} - canvasToOff: {fileID: 79742419} ---- !u!114 &1714222706 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1714222703} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1714222707} - m_OnClick: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 1714222705} - m_TargetAssemblyTypeName: CanvasChanger, Assembly-CSharp - m_MethodName: ChangeCanvas - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &1714222707 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1714222703} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1714222708 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1714222703} - m_CullTransparentMesh: 1 ---- !u!1 &1769622002 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1769622003} - - component: {fileID: 1769622005} - - component: {fileID: 1769622004} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1769622003 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1769622002} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1714222704} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: 784, y: -518} + m_SizeDelta: {x: 746.69995, y: -487.283} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1769622004 +--- !u!114 &2010774229 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1769622002} + m_GameObject: {fileID: 2010774227} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_Color: {r: 0.26415092, g: 0.26016372, b: 0.26016372, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 @@ -3577,417 +949,24 @@ MonoBehaviour: m_PersistentCalls: m_Calls: [] m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 30 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 0 - m_MaxSize: 200 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Back ---- !u!222 &1769622005 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1769622002} - m_CullTransparentMesh: 1 ---- !u!1 &1803389985 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1803389986} - - component: {fileID: 1803389988} - - component: {fileID: 1803389987} - m_Layer: 5 - m_Name: Image - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1803389986 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803389985} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 551818479} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1803389987 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803389985} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 5c823983cfaec90459cde31d1c98f1a9, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1803389988 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1803389985} - m_CullTransparentMesh: 1 ---- !u!1 &1898368028 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1898368029} - - component: {fileID: 1898368030} - m_Layer: 5 - m_Name: ButtonsParent - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1898368029 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1898368028} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 751714469} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -208, y: 377} - m_SizeDelta: {x: 150, y: 150} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1898368030 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1898368028} - 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 - page: 0 ---- !u!1 &1981398485 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1981398486} - - component: {fileID: 1981398488} - - component: {fileID: 1981398487} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1981398486 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1981398485} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1220524077} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1981398487 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1981398485} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: 0, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 30 - m_FontStyle: 0 + m_Font: {fileID: 12800000, guid: 1adb65df912c9a74bbbaae177c2372d9, type: 3} + m_FontSize: 300 + m_FontStyle: 1 m_BestFit: 0 m_MinSize: 3 - m_MaxSize: 40 + m_MaxSize: 300 m_Alignment: 4 m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: Add ---- !u!222 &1981398488 + m_Text: prototype 0.001 +--- !u!222 &2010774230 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1981398485} + m_GameObject: {fileID: 2010774227} m_CullTransparentMesh: 1 ---- !u!1 &1993393108 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1993393109} - - component: {fileID: 1993393111} - - component: {fileID: 1993393110} - m_Layer: 5 - m_Name: Bg - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1993393109 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993393108} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 517710797} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -0.0021744, y: -0.00043488} - m_SizeDelta: {x: 532.08, y: 365.28} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1993393110 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993393108} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9607844, g: 0.8588236, b: 0.7019608, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1993393111 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993393108} - m_CullTransparentMesh: 1 ---- !u!1 &2051496099 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2051496100} - - component: {fileID: 2051496102} - - component: {fileID: 2051496101} - m_Layer: 5 - m_Name: Player - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2051496100 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2051496099} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 2.9846, y: 4.4395924, z: 2.9846} - m_Children: [] - m_Father: {fileID: 1671985497} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -636, y: 0} - m_SizeDelta: {x: 192.1169, y: 200.8572} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2051496101 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2051496099} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 0.25490198} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: cbff014c4cf09684c84284e36be315ac, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &2051496102 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2051496099} - m_CullTransparentMesh: 1 ---- !u!1 &2069689065 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2069689066} - m_Layer: 0 - m_Name: UI - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2069689066 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2069689065} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1494223992} - - {fileID: 1422958042} - - {fileID: 79742422} - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Scenes/MainMenu.unity.meta b/Assets/Scenes/MainMenu.unity.meta index f5f094cf..ba621426 100644 --- a/Assets/Scenes/MainMenu.unity.meta +++ b/Assets/Scenes/MainMenu.unity.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c0f2ab0c52da4e04fa0f6cb87378dd5a +guid: ae36a43ecda2f5645878559e1b6f717a DefaultImporter: externalObjects: {} userData: diff --git a/Assets/Scenes/SampleSceneSettings.lighting b/Assets/Scenes/SampleSceneSettings.lighting deleted file mode 100644 index ff4e65c4..00000000 --- a/Assets/Scenes/SampleSceneSettings.lighting +++ /dev/null @@ -1,63 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!850595691 &4890085278179872738 -LightingSettings: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: SampleSceneSettings - serializedVersion: 3 - m_GIWorkflowMode: 1 - m_EnableBakedLightmaps: 0 - m_EnableRealtimeLightmaps: 0 - m_RealtimeEnvironmentLighting: 1 - m_BounceScale: 1 - m_AlbedoBoost: 1 - m_IndirectOutputScale: 1 - m_UsingShadowmask: 1 - m_BakeBackend: 0 - m_LightmapMaxSize: 1024 - m_BakeResolution: 40 - m_Padding: 2 - m_TextureCompression: 1 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_ExtractAO: 0 - m_MixedBakeMode: 2 - m_LightmapsBakeMode: 1 - m_FilterMode: 1 - m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} - m_ExportTrainingData: 0 - m_TrainingDataDestination: TrainingData - m_RealtimeResolution: 2 - m_ForceWhiteAlbedo: 0 - m_ForceUpdates: 0 - m_FinalGather: 0 - m_FinalGatherRayCount: 256 - m_FinalGatherFiltering: 1 - m_PVRCulling: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 - m_PVREnvironmentSampleCount: 500 - m_PVREnvironmentReferencePointCount: 2048 - m_LightProbeSampleCountMultiplier: 4 - m_PVRBounces: 2 - m_PVRMinBounces: 2 - m_PVREnvironmentMIS: 0 - m_PVRFilteringMode: 2 - m_PVRDenoiserTypeDirect: 0 - m_PVRDenoiserTypeIndirect: 0 - m_PVRDenoiserTypeAO: 0 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 diff --git a/Assets/Scripts/CanvasChanger.cs b/Assets/Scripts/CanvasChanger.cs index ad9009af..c4c6c155 100644 --- a/Assets/Scripts/CanvasChanger.cs +++ b/Assets/Scripts/CanvasChanger.cs @@ -5,14 +5,14 @@ using UnityEngine.UI; public class CanvasChanger : MonoBehaviour { - public Canvas canvasToOn; - public Canvas canvasToOff; + public GameObject canvasToOn; + public GameObject canvasToOff; public void ChangeCanvas() { if (canvasToOn != null) - canvasToOn.enabled = true; + canvasToOn.SetActive(true); if (canvasToOn != null) - canvasToOff.enabled = false; + canvasToOff.SetActive(false); } } diff --git a/Assets/Scripts/Card.cs b/Assets/Scripts/Card.cs index 8f8a45f7..014e854f 100644 --- a/Assets/Scripts/Card.cs +++ b/Assets/Scripts/Card.cs @@ -94,17 +94,16 @@ public class Card : MonoBehaviour { DeckManager.main.NewStaminaQuantity(_stamina + _card.addStamina); } - //еÑли переÑтанет резко работать карты на хил и армор, то дело в Ñтом, еÑли нет => нужно удалить коментарий - //else if (_card.addArmor > 0) - //{ + else if (_card.addArmor > 0) + { DeckManager.main.NewStaminaQuantity(_stamina - _card.quantityStamina); Player.main.AddArmor(_card.addArmor); - //} - //else if (_card.addHealth > 0) - //{ + } + else if (_card.addHealth > 0) + { DeckManager.main.NewStaminaQuantity(_stamina - _card.quantityStamina); Player.main.ChangeHp(-_card.addHealth); - //} + } DeckManager.main.currentCard = null; DeckManager.main.MarkersRegulator(); DestroyObject(); diff --git a/Assets/Scripts/Configs/BattleConfig.cs b/Assets/Scripts/Configs/BattleConfig.cs index d004baf4..3fa8fc6e 100644 --- a/Assets/Scripts/Configs/BattleConfig.cs +++ b/Assets/Scripts/Configs/BattleConfig.cs @@ -7,7 +7,7 @@ using System; using UnityEditor; -[CreateAssetMenu(fileName = "BattleConfig")] +[CreateAssetMenu(fileName = "BattleConfig", menuName = "Configs/BattleConfig")] public class BattleConfig : ScriptableObject { public BattleCharacteristics battleCharacteristics; @@ -15,7 +15,7 @@ public class BattleConfig : ScriptableObject [Serializable] public class BattleCharacteristics { - public bool FirstPhase; + public Phase firstPhaseOptions; public bool SecondPhase; public Phase SecondPhaseOptions; diff --git a/Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset new file mode 100644 index 00000000..2dc724d1 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: EasyBattle_1 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 1 + maximumQuantity: 2 + SecondPhase: 0 + SecondPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scenes/SampleSceneSettings.lighting.meta b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset.meta similarity index 60% rename from Assets/Scenes/SampleSceneSettings.lighting.meta rename to Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset.meta index ee4e24a9..9b399326 100644 --- a/Assets/Scenes/SampleSceneSettings.lighting.meta +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 -guid: 727470f1003b0d84ea84cdd280a59b2b +guid: 3cef7b3afdcce6a4a97f2883ee7ce203 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 4890085278179872738 + mainObjectFileID: 11400000 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset new file mode 100644 index 00000000..5040faf4 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: EasyBattle_2 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + minimumQuantity: 1 + maximumQuantity: 2 + SecondPhase: 0 + SecondPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset.meta b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset.meta new file mode 100644 index 00000000..55829f75 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 842ea87c23ba82e4980d0d5c1bccb263 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset new file mode 100644 index 00000000..56b2a55b --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: EasyBattle_3 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 1 + maximumQuantity: 1 + SecondPhase: 0 + SecondPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset.meta b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset.meta new file mode 100644 index 00000000..79a9496f --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4b45319e9ae8c24a9438acde55e9f9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset b/Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset index 13c78e78..c8cccffc 100644 --- a/Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset +++ b/Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset @@ -13,7 +13,6 @@ MonoBehaviour: m_Name: FirstBattle m_EditorClassIdentifier: Assembly-CSharp::battleConfig battleCharacteristics: - FirstPhase: 1 firstPhaseOptions: enemies: - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} @@ -21,13 +20,13 @@ MonoBehaviour: - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} minimumQuantity: 3 maximumQuantity: 3 - SecondPhase: 1 + SecondPhase: 0 SecondPhaseOptions: enemies: - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} minimumQuantity: 1 maximumQuantity: 2 - ThirdPhase: 1 + ThirdPhase: 0 ThirdPhaseOptions: enemies: - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset b/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset new file mode 100644 index 00000000..9469c16b --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset @@ -0,0 +1,38 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: HardBattle_1 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + SecondPhase: 1 + SecondPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + ThirdPhase: 1 + ThirdPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset.meta b/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset.meta new file mode 100644 index 00000000..57487c52 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c76ef6aeaf7e2074fb44abc864f27a75 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset b/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset new file mode 100644 index 00000000..97d661c0 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset @@ -0,0 +1,38 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: HardBattle_2 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + SecondPhase: 1 + SecondPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + ThirdPhase: 1 + ThirdPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset.meta b/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset.meta new file mode 100644 index 00000000..1fd5d1bb --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ddd96264d0ff474fb1b38acae40b69f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset b/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset new file mode 100644 index 00000000..55b8cbfd --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset @@ -0,0 +1,38 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: HardBattle_3 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + SecondPhase: 1 + SecondPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + ThirdPhase: 1 + ThirdPhaseOptions: + enemies: + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 diff --git a/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset.meta b/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset.meta new file mode 100644 index 00000000..bd40f3a2 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f978d621347647a4f8505449e105298e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset new file mode 100644 index 00000000..f9520a86 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset @@ -0,0 +1,33 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: NormalBattle_1 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + minimumQuantity: 2 + maximumQuantity: 2 + SecondPhase: 1 + SecondPhaseOptions: + enemies: + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + minimumQuantity: 2 + maximumQuantity: 3 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset.meta b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset.meta new file mode 100644 index 00000000..676d9f1b --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 831eae662de3b074ba854d72dd4b7706 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset new file mode 100644 index 00000000..14240eaa --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: NormalBattle_2 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + minimumQuantity: 2 + maximumQuantity: 3 + SecondPhase: 1 + SecondPhaseOptions: + enemies: + - {fileID: 11400000, guid: b9a9200a18ccfab4eb3d8871e3c75a3f, type: 2} + - {fileID: 11400000, guid: 4f3f54f77793e6742beb0119340b03f5, type: 2} + minimumQuantity: 2 + maximumQuantity: 3 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset.meta b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset.meta new file mode 100644 index 00000000..ae13592c --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a58b74e66a955c842842e28c951d39f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset new file mode 100644 index 00000000..5c915b93 --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b33bbefb941268c4b8f526cc6ecc1eba, type: 3} + m_Name: NormalBattle_3 + m_EditorClassIdentifier: + battleCharacteristics: + firstPhaseOptions: + enemies: + - {fileID: 11400000, guid: 311edf240c8ea15449adcfbad6d87fbe, type: 2} + minimumQuantity: 3 + maximumQuantity: 3 + SecondPhase: 0 + SecondPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 + ThirdPhase: 0 + ThirdPhaseOptions: + enemies: [] + minimumQuantity: 0 + maximumQuantity: 0 diff --git a/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset.meta b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset.meta new file mode 100644 index 00000000..987b3e7c --- /dev/null +++ b/Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b30cfc668c041747a968d2c8bf1a3cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/CardConfig.cs b/Assets/Scripts/Configs/CardConfig.cs index 4e4b29f7..b5eb1ae8 100644 --- a/Assets/Scripts/Configs/CardConfig.cs +++ b/Assets/Scripts/Configs/CardConfig.cs @@ -4,7 +4,7 @@ using UnityEngine; using System.Collections; using System.Collections.Generic; -[CreateAssetMenu(fileName = "CardConfig")] +[CreateAssetMenu(fileName = "Configs/CardConfig")] public class CardConfig : ScriptableObject { public CardCharacteristics CardCharacteristics; diff --git a/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset b/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset new file mode 100644 index 00000000..e315b2bf --- /dev/null +++ b/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c4c6a3d3a1809644803be5d2cb70212, type: 3} + m_Name: UltraMegaAttack + m_EditorClassIdentifier: + CardCharacteristics: + cardName: UltraMegaAttack + picture: {fileID: 21300000, guid: 49fd699074bfe8742b2664b5fd5b5396, type: 3} + description: + specialization: 1 + quantityStamina: 0 + quantityHealth: 0 + damage: 30 + addHealth: 0 + addStamina: 0 + addArmor: 0 diff --git a/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset.meta b/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset.meta new file mode 100644 index 00000000..3e92ab45 --- /dev/null +++ b/Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8ca549d99fe5cf4397542620ed834cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/EnemyConfig.cs b/Assets/Scripts/Configs/EnemyConfig.cs index 2d20ddd1..1aa37d3c 100644 --- a/Assets/Scripts/Configs/EnemyConfig.cs +++ b/Assets/Scripts/Configs/EnemyConfig.cs @@ -4,7 +4,7 @@ using UnityEditor; using UnityEngine; using UnityEngine.Events; -[CreateAssetMenu(fileName = "EnemyConfig")] +[CreateAssetMenu(fileName = "Configs/EnemyConfig")] public class EnemyConfig : ScriptableObject { public EnemyCharacteristics enemyCharacteristics; diff --git a/Assets/Scripts/Configs/MissionConfig.cs b/Assets/Scripts/Configs/MissionConfig.cs new file mode 100644 index 00000000..25e3831c --- /dev/null +++ b/Assets/Scripts/Configs/MissionConfig.cs @@ -0,0 +1,21 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Events; +using UnityEngine.SceneManagement; +using System; +using UnityEditor; + +[CreateAssetMenu(fileName = "MissionConfig")] +public class MissionConfig : ScriptableObject +{ + public List< + MissionCharacteristics> missionItems = new List(); +} +[Serializable] +public class MissionCharacteristics +{ + public BattleConfig battle; + //  áóäóùåì ñþäà äîáàâÿòñÿ ñîáûòèÿ +} + diff --git a/Assets/Scripts/Configs/MissionConfig.cs.meta b/Assets/Scripts/Configs/MissionConfig.cs.meta new file mode 100644 index 00000000..a5ad23f3 --- /dev/null +++ b/Assets/Scripts/Configs/MissionConfig.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c912d3615048b3c4e9c6d0cf942bb4db +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/MissionConfigs.meta b/Assets/Scripts/Configs/MissionConfigs.meta new file mode 100644 index 00000000..22555913 --- /dev/null +++ b/Assets/Scripts/Configs/MissionConfigs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa163f2f9747ec9418f19577175a653e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset b/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset new file mode 100644 index 00000000..c54b0147 --- /dev/null +++ b/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset @@ -0,0 +1,18 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c912d3615048b3c4e9c6d0cf942bb4db, type: 3} + m_Name: FirstMission + m_EditorClassIdentifier: + missionItems: + - battle: {fileID: 11400000, guid: 3cef7b3afdcce6a4a97f2883ee7ce203, type: 2} + - battle: {fileID: 11400000, guid: a58b74e66a955c842842e28c951d39f5, type: 2} + - battle: {fileID: 11400000, guid: c4b45319e9ae8c24a9438acde55e9f9a, type: 2} diff --git a/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset.meta b/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset.meta new file mode 100644 index 00000000..416c3e6b --- /dev/null +++ b/Assets/Scripts/Configs/MissionConfigs/FirstMission.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0039c482e027b964ba368d339754bb7f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/DeckManager.cs b/Assets/Scripts/DeckManager.cs index 6037e8be..60848011 100644 --- a/Assets/Scripts/DeckManager.cs +++ b/Assets/Scripts/DeckManager.cs @@ -89,6 +89,7 @@ public class DeckManager : MonoBehaviour } } CardInTable.Clear(); + HandingOut(); if (stamina < 3) NewStaminaQuantity(stamina + 1); //нужна корутина Ð´Ð»Ñ Ð²Ñ€Ð°Ð¶ÐµÑкого хода @@ -154,28 +155,13 @@ public class DeckManager : MonoBehaviour currentCard = null; MarkersRegulator(); } - /*public void ActionInPlayer() - { - if (waitingEnemyTurn || currentCard == null || !Player.main.CheckMarker()) return; - - if (currentCard.CardCharacteristics.healing > 0) - { - - Player.main.ChangeHp(-currentCard.CardCharacteristics.healing); - } - else if(currentCard.CardCharacteristics.addStamina) - NewStaminaQuantity(stamina - currentCard.CardCharacteristics.quantityStamina); - CardInTable[numberCurrentCard].GetComponent().DestroyObject(); - currentCard = null; - MarkersRegulator(); -}*/ IEnumerator EnemyStep() { waitingEnemyTurn = true; Session.main.EnemiesStep(); yield return new WaitForSeconds(0.5f); waitingEnemyTurn = false; - HandingOut(); + } } diff --git a/Assets/Scripts/MainMenuScripts.meta b/Assets/Scripts/Inventory.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts.meta rename to Assets/Scripts/Inventory.meta diff --git a/Assets/Scripts/Inventory/AddEquipment.cs b/Assets/Scripts/Inventory/AddEquipment.cs new file mode 100644 index 00000000..dc1b2d22 --- /dev/null +++ b/Assets/Scripts/Inventory/AddEquipment.cs @@ -0,0 +1,33 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class AddEquipment : MonoBehaviour +{ + public void AddOrRemove() + { + if (Inventory.main.EquipedOrNot(Inventory.main.lastCardNum)) + { + Inventory.main.playerEquipment.Remove(Inventory.main.allEquipment[Inventory.main.lastCardNum]); + for (int i = 0; i < Inventory.main.playerPlace.Count; i++) + { + if (Inventory.main.playerPlace[i].name == Inventory.main.allEquipment[Inventory.main.lastCardNum].GetComponent().equipmentConfig.equipmentCharacteristics.place.ToString()) + { + Inventory.main.playerPlace[i].image.sprite = Inventory.main.imagePlug; + Inventory.main.playerPlace[i].GetComponent().equipmentNum = -1; + } + } + } + else + { + Inventory.main.playerEquipment.Add(Inventory.main.allEquipment[Inventory.main.lastCardNum]); + Inventory.main.WhichPlace(Inventory.main.lastCardNum); + } + + DataScript.PlayerEquipment = Inventory.main.playerEquipment; + + EquipmentInfo.main.CardAbout(Inventory.main.lastCardNum); + } + + +} diff --git a/Assets/Scripts/MainMenuScripts/AddEquipment.cs.meta b/Assets/Scripts/Inventory/AddEquipment.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/AddEquipment.cs.meta rename to Assets/Scripts/Inventory/AddEquipment.cs.meta diff --git a/Assets/Scripts/MainMenuScripts/EquipmentButton.cs b/Assets/Scripts/Inventory/EquipmentButton.cs similarity index 62% rename from Assets/Scripts/MainMenuScripts/EquipmentButton.cs rename to Assets/Scripts/Inventory/EquipmentButton.cs index 82817a3f..b619b293 100644 --- a/Assets/Scripts/MainMenuScripts/EquipmentButton.cs +++ b/Assets/Scripts/Inventory/EquipmentButton.cs @@ -8,7 +8,7 @@ public class EquipmentButton : MonoBehaviour public void OnClick() { - MainMenuScript.main.lastCardNum = num; - Camera.main.GetComponent().CardAbout(num); + Inventory.main.lastCardNum = num; + EquipmentInfo.main.CardAbout(num); } } diff --git a/Assets/Scripts/MainMenuScripts/EquipmentButton.cs.meta b/Assets/Scripts/Inventory/EquipmentButton.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/EquipmentButton.cs.meta rename to Assets/Scripts/Inventory/EquipmentButton.cs.meta diff --git a/Assets/Scripts/Inventory/EquipmentInfo.cs b/Assets/Scripts/Inventory/EquipmentInfo.cs new file mode 100644 index 00000000..48094853 --- /dev/null +++ b/Assets/Scripts/Inventory/EquipmentInfo.cs @@ -0,0 +1,43 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +public class EquipmentInfo : MonoBehaviour +{ + public static EquipmentInfo main; + [SerializeField] private Text localName; + [SerializeField] private Text desqription; + + [SerializeField] private Image icon; + [SerializeField] private Button AddButton; + + private void Awake() + { + if (main != null && main != this) + { + Debug.LogWarning("2 dataholders on the scene"); + Destroy(this); + return; + } + + main = this; + } + private void Start() + { + CardAbout(0); + } + + public void CardAbout(int _index) + { + localName.text = Inventory.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.name; + desqription.text = Inventory.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.description; + icon.sprite = Inventory.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + if (Inventory.main.EquipedOrNot(Inventory.main.lastCardNum)) + AddButton.GetComponentInChildren().text = "UnEquip"; + + + else + AddButton.GetComponentInChildren().text = "Equip"; + } +} diff --git a/Assets/Scripts/MainMenuScripts/EquipmentInfo.cs.meta b/Assets/Scripts/Inventory/EquipmentInfo.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/EquipmentInfo.cs.meta rename to Assets/Scripts/Inventory/EquipmentInfo.cs.meta diff --git a/Assets/Scripts/MainMenuScripts/MainMenuScript.cs b/Assets/Scripts/Inventory/Inventory.cs similarity index 72% rename from Assets/Scripts/MainMenuScripts/MainMenuScript.cs rename to Assets/Scripts/Inventory/Inventory.cs index ced46f4c..b0962651 100644 --- a/Assets/Scripts/MainMenuScripts/MainMenuScript.cs +++ b/Assets/Scripts/Inventory/Inventory.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; -public class MainMenuScript : MonoBehaviour +public class Inventory : MonoBehaviour { - public static MainMenuScript main; + public static Inventory main; public List allEquipment = new List(); public List playerEquipment = new List(); @@ -38,9 +38,13 @@ public class MainMenuScript : MonoBehaviour { for (int i = 0; i < playerPlace.Count; i++) { - if (playerPlace[i].name == allEquipment[_num].GetComponent().equipmentConfig.equipmentCharacteristics.place.ToString()) + var _config = + allEquipment[_num].GetComponent().equipmentConfig. + equipmentCharacteristics; + if (_config == null) Debug.LogError("config not found!"); + if (playerPlace[i].name == _config.name) { - playerPlace[i].image.sprite = allEquipment[_num].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + playerPlace[i].image.sprite = _config.sprite; playerPlace[i].GetComponent().equipmentNum = lastCardNum; } } diff --git a/Assets/Scripts/MainMenuScripts/MainMenuScript.cs.meta b/Assets/Scripts/Inventory/Inventory.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/MainMenuScript.cs.meta rename to Assets/Scripts/Inventory/Inventory.cs.meta diff --git a/Assets/Scripts/MainMenuScripts/PlaceEquipment.cs b/Assets/Scripts/Inventory/PlaceEquipment.cs similarity index 59% rename from Assets/Scripts/MainMenuScripts/PlaceEquipment.cs rename to Assets/Scripts/Inventory/PlaceEquipment.cs index d3218c46..fe8ced62 100644 --- a/Assets/Scripts/MainMenuScripts/PlaceEquipment.cs +++ b/Assets/Scripts/Inventory/PlaceEquipment.cs @@ -11,8 +11,8 @@ public class PlaceEquipment : MonoBehaviour public void EquipmentAbout() { //Óðàààààà, âñå ðàáîòàåò - if (GetComponentInChildren().sprite.name != MainMenuScript.main.imagePlug.name && equipmentNum != -1) - Camera.main.GetComponent().CardAbout(equipmentNum); + if (GetComponentInChildren().sprite.name != Inventory.main.imagePlug.name && equipmentNum != -1) + EquipmentInfo.main.CardAbout(equipmentNum); } } diff --git a/Assets/Scripts/MainMenuScripts/PlaceEquipment.cs.meta b/Assets/Scripts/Inventory/PlaceEquipment.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/PlaceEquipment.cs.meta rename to Assets/Scripts/Inventory/PlaceEquipment.cs.meta diff --git a/Assets/Scripts/MainMenuScripts/SpawnButton.cs b/Assets/Scripts/Inventory/SpawnButton.cs similarity index 86% rename from Assets/Scripts/MainMenuScripts/SpawnButton.cs rename to Assets/Scripts/Inventory/SpawnButton.cs index aae34426..63aefa94 100644 --- a/Assets/Scripts/MainMenuScripts/SpawnButton.cs +++ b/Assets/Scripts/Inventory/SpawnButton.cs @@ -29,7 +29,7 @@ public class SpawnButton : MonoBehaviour public void ChangePage(int _page) { - if ((page + _page) * maxHeroButOnPage - MainMenuScript.main.allEquipment.Count < 0) + if ((page + _page) * maxHeroButOnPage - Inventory.main.allEquipment.Count < 0) { if (page + _page > -1) { @@ -53,7 +53,7 @@ public class SpawnButton : MonoBehaviour for (int i = _begin; i < _end; i++) { - if (i > MainMenuScript.main.allEquipment.Count - 1) + if (i > Inventory.main.allEquipment.Count - 1) { break; } @@ -62,7 +62,7 @@ public class SpawnButton : MonoBehaviour link.transform.GetComponent().num = i; link.transform.localPosition = new Vector3(_x, _y, 0); - link.image.sprite = MainMenuScript.main.allEquipment[i].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; + link.image.sprite = Inventory.main.allEquipment[i].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; _x += gameObject.GetComponent().rect.width + distX; diff --git a/Assets/Scripts/MainMenuScripts/SpawnButton.cs.meta b/Assets/Scripts/Inventory/SpawnButton.cs.meta similarity index 100% rename from Assets/Scripts/MainMenuScripts/SpawnButton.cs.meta rename to Assets/Scripts/Inventory/SpawnButton.cs.meta diff --git a/Assets/Scripts/MainMenuScripts/AddEquipment.cs b/Assets/Scripts/MainMenuScripts/AddEquipment.cs deleted file mode 100644 index d3d38029..00000000 --- a/Assets/Scripts/MainMenuScripts/AddEquipment.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; - -public class AddEquipment : MonoBehaviour -{ - public void AddOrRemove() - { - if (MainMenuScript.main.EquipedOrNot(MainMenuScript.main.lastCardNum)) - { - MainMenuScript.main.playerEquipment.Remove(MainMenuScript.main.allEquipment[MainMenuScript.main.lastCardNum]); - for (int i = 0; i < MainMenuScript.main.playerPlace.Count; i++) - { - if (MainMenuScript.main.playerPlace[i].name == MainMenuScript.main.allEquipment[MainMenuScript.main.lastCardNum].GetComponent().equipmentConfig.equipmentCharacteristics.place.ToString()) - { - MainMenuScript.main.playerPlace[i].image.sprite = MainMenuScript.main.imagePlug; - MainMenuScript.main.playerPlace[i].GetComponent().equipmentNum = -1; - } - } - } - else - { - MainMenuScript.main.playerEquipment.Add(MainMenuScript.main.allEquipment[MainMenuScript.main.lastCardNum]); - MainMenuScript.main.WhichPlace(MainMenuScript.main.lastCardNum); - } - - DataScript.PlayerEquipment = MainMenuScript.main.playerEquipment; - - Camera.main.GetComponent().CardAbout(MainMenuScript.main.lastCardNum); - } - - -} diff --git a/Assets/Scripts/MainMenuScripts/EquipmentInfo.cs b/Assets/Scripts/MainMenuScripts/EquipmentInfo.cs deleted file mode 100644 index 5cc51786..00000000 --- a/Assets/Scripts/MainMenuScripts/EquipmentInfo.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.UI; - -public class EquipmentInfo : MonoBehaviour -{ - [SerializeField] private Text localName; - [SerializeField] private Text desqription; - - [SerializeField] private Image icon; - [SerializeField] private Button AddButton; - - private void Start() - { - CardAbout(0); - } - - public void CardAbout(int _index) - { - localName.text = MainMenuScript.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.name; - desqription.text = MainMenuScript.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.description; - icon.sprite = MainMenuScript.main.allEquipment[_index].GetComponent().equipmentConfig.equipmentCharacteristics.sprite; - if (MainMenuScript.main.EquipedOrNot(MainMenuScript.main.lastCardNum)) - AddButton.GetComponentInChildren().text = "UnEquip"; - - - else - AddButton.GetComponentInChildren().text = "Equip"; - } -} diff --git a/Assets/Scripts/SceneLoader.cs b/Assets/Scripts/SceneLoader.cs index d0097e1b..fbfd2d57 100644 --- a/Assets/Scripts/SceneLoader.cs +++ b/Assets/Scripts/SceneLoader.cs @@ -5,8 +5,9 @@ using UnityEngine.SceneManagement; public class SceneLoader : MonoBehaviour { + public void ChangeScene(string _sceneName) { - SceneManager.LoadScene(_sceneName); + DataHolder.main.ChangeScene(_sceneName); } } diff --git a/Assets/Scripts/Session.cs b/Assets/Scripts/Session.cs index 6aaa31da..c20485ec 100644 --- a/Assets/Scripts/Session.cs +++ b/Assets/Scripts/Session.cs @@ -10,30 +10,36 @@ public class Session : MonoBehaviour { public static Session main; [SerializeField] private PlayerConfig playerConfig; - [SerializeField] private BattleConfig battleConfig; [SerializeField] private UnityEvent onVictory; [SerializeField] private UnityEvent onDefeat; - + [SerializeField] private UnityEvent onInventory; + [SerializeField] private UnityEvent onNextLevel; [Header("Enemies")] - [Space] + [Space (3)] [SerializeField] private List enemyUIPositions = new List(); [SerializeField] private List enemyPrefabs; [Header("Player")] + [Space] + [SerializeField] private GameObject player; [SerializeField] private Transform playerPosition; [HideInInspector] public GameObject playerLink; + [Header("UI")] + [Space] + [SerializeField] private PhaseCounter phaseCounter; [Space(3)] [Header("For checking")] + [SerializeField] private BattleConfig battleConfig; public int numberPhase = 1; public int quantityEnemies = 0; public bool waitingEndingRound = false; - + [SerializeField] private BattleConfig nextLevel; public List currentEnemies = new List(); private void Awake() @@ -44,14 +50,18 @@ public class Session : MonoBehaviour Destroy(this); return; } - main = this; + battleConfig = SearchNextLevel(); + nextLevel = SearchNextLevel(); + Debug.Log(battleConfig.name + " " + nextLevel.name); } public void Start() { + phaseCounter.NewMaxPhase(battleConfig); CreatePlayer(); FirstPhase(); } + public void FirstPhase() { var FP = battleConfig.battleCharacteristics.firstPhaseOptions; @@ -64,14 +74,15 @@ public class Session : MonoBehaviour } } - public void SecondPhase() { + if (!battleConfig.battleCharacteristics.SecondPhase) { Victory(); return; } + phaseCounter.NewPhase(); var SP = battleConfig.battleCharacteristics.SecondPhaseOptions; int quantity = Random.Range(SP.minimumQuantity, SP.maximumQuantity); for (int i = 0; i < quantity; i++) @@ -82,7 +93,6 @@ public class Session : MonoBehaviour } } - public void ThirdPhase() { if (!battleConfig.battleCharacteristics.ThirdPhase) @@ -90,6 +100,8 @@ public class Session : MonoBehaviour Victory(); return; } + phaseCounter.NewPhase(); + var TP = battleConfig.battleCharacteristics.ThirdPhaseOptions; int quantity = Random.Range(TP.minimumQuantity, TP.maximumQuantity); for (int i = 0; i < quantity; i++) @@ -101,6 +113,7 @@ public class Session : MonoBehaviour } } + //EventLogic public void Victory() { onVictory?.Invoke(); @@ -109,47 +122,13 @@ public class Session : MonoBehaviour { onDefeat?.Invoke(); } - public void EnemyDeath(GameObject _deadEnemy) + public void Inventory() { - quantityEnemies--; - for(int i = 0; i < currentEnemies.Count; i++) - { - if(currentEnemies[i] == _deadEnemy) - { - Destroy(currentEnemies[i]); - currentEnemies.RemoveAt(i); - } - } - if (quantityEnemies == 0) - { - - StartCoroutine(ChekingCoroutine()); - } - SwitchEnemyPosition(); + onInventory?.Invoke(); } - - IEnumerator ChekingCoroutine() - { - waitingEndingRound = true; - currentEnemies.Clear(); - yield return new WaitForSeconds(0.5f); - if (numberPhase == 1 && battleConfig.battleCharacteristics.SecondPhase) - { - numberPhase++; - SecondPhase(); - } - else if (numberPhase == 2 && battleConfig.battleCharacteristics.ThirdPhase) - { - numberPhase++; - ThirdPhase(); - } - else - { - Victory(); - } - waitingEndingRound = false; - } - + + + //EventLogic end // RandomBlock @@ -166,8 +145,6 @@ public class Session : MonoBehaviour Debug.LogError("WARNING! no config found for position" + _position.ToString()); return null; } - - EnemyConfig RandomInRandomizer(int _position, List _enemyConfigs) { int _numberEnemy; @@ -181,10 +158,10 @@ public class Session : MonoBehaviour return _enemyConfigs[_numberEnemy]; } - - // RandomBlock end + //EnemyBlock + public GameObject CreateEnemies(EnemyConfig _config, int _position) { for (int i = 0; i < enemyPrefabs.Count; i++) @@ -200,7 +177,6 @@ public class Session : MonoBehaviour return null; } - public void SwitchEnemyPosition() { for (int i = 0; i < currentEnemies.Count; i++) @@ -210,15 +186,6 @@ public class Session : MonoBehaviour } } - - public void CreatePlayer() - { - Instantiate(player, playerPosition); - Player.main.playerConfig = playerConfig; - Player.main.NewInformation(); - } - - public void EnemiesStep() { for (int i = 0; i < currentEnemies.Count; i++) @@ -229,4 +196,83 @@ public class Session : MonoBehaviour } } } + public void EnemyDeath(GameObject _deadEnemy) + { + quantityEnemies--; + for (int i = 0; i < currentEnemies.Count; i++) + { + if (currentEnemies[i] == _deadEnemy) + { + Destroy(currentEnemies[i]); + currentEnemies.RemoveAt(i); + } + } + if (quantityEnemies == 0) + { + + StartCoroutine(ChekingCoroutine()); + } + SwitchEnemyPosition(); + } + IEnumerator ChekingCoroutine() + { + waitingEndingRound = true; + currentEnemies.Clear(); + yield return new WaitForSeconds(0.2f); + if (numberPhase == 1 && battleConfig.battleCharacteristics.SecondPhase) + { + numberPhase++; + SecondPhase(); + } + else if (numberPhase == 2 && battleConfig.battleCharacteristics.ThirdPhase) + { + numberPhase++; + ThirdPhase(); + } + else + { + Victory(); + } + waitingEndingRound = false; + } + //EnemyBlock end + + public void CreatePlayer() + { + Instantiate(player, playerPosition); + Player.main.playerConfig = playerConfig; + Player.main.NewInformation(); + } + + + public void LaunchNextLevel() + { + if (nextLevel == null) + { + DataHolder.main.mission = null; + DataHolder.main.ReturnInMainMenu(); + return; + } + phaseCounter.NewMaxPhase(nextLevel); + onNextLevel?.Invoke(); + } + public void NextLevel() + { + + battleConfig = nextLevel; + nextLevel = SearchNextLevel() ; + + FirstPhase(); + } + public BattleConfig SearchNextLevel() + { + if(DataHolder.main.mission != null) + { + return DataHolder.main.NextBattle(); + } + else + { + return DataHolder.main.RandomLevel(DataHolder.complexityLevels.all); + } + } } \ No newline at end of file diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 97313e76..47843a14 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef b/Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef deleted file mode 100644 index 89ce9519..00000000 Binary files a/Library/Artifacts/23/23318cf341f8825ea7fcbbc8c3c438ef and /dev/null differ diff --git a/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 b/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 deleted file mode 100644 index 9b9f0f3a..00000000 Binary files a/Library/Artifacts/44/44d03b974d97576c8462ad812e484a92 and /dev/null differ diff --git a/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e b/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e deleted file mode 100644 index ba259e89..00000000 Binary files a/Library/Artifacts/7f/7ff7cbd36a78538c793516e5657bd19e and /dev/null differ diff --git a/Library/Artifacts/d5/d50a203301d277adf24adcfb66981202 b/Library/Artifacts/d5/d50a203301d277adf24adcfb66981202 deleted file mode 100644 index 7acccfa3..00000000 Binary files a/Library/Artifacts/d5/d50a203301d277adf24adcfb66981202 and /dev/null differ diff --git a/Library/CurrentLayout-default.dwlt b/Library/CurrentLayout-default.dwlt index ae819ae2..5da96e81 100644 --- a/Library/CurrentLayout-default.dwlt +++ b/Library/CurrentLayout-default.dwlt @@ -15,120 +15,16 @@ MonoBehaviour: m_PixelRect: serializedVersion: 2 x: 0 - y: 43 - width: 1920 - height: 997 + y: 43.2 + width: 1536 + height: 780.8 m_ShowMode: 4 m_Title: Game - m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 392} + m_RootView: {fileID: 2} + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 1 --- !u!114 &2 -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: 9} - - {fileID: 3} - m_Position: - serializedVersion: 2 - x: 0 - y: 30 - width: 1920 - height: 947 - m_MinSize: {x: 677, y: 342} - m_MaxSize: {x: 12002, y: 8042} - vertical: 0 - controlID: 207 ---- !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: 275, y: 50} - m_MaxSize: {x: 4000, y: 4000} - 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: 379 - height: 626 - 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: ConsoleWindow - m_EditorClassIdentifier: - m_Children: [] - m_Position: - serializedVersion: 2 - x: 0 - y: 626 - width: 1531 - height: 321 - m_MinSize: {x: 101, y: 121} - m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 18} - m_Panes: - - {fileID: 13} - - {fileID: 18} - m_Selected: 1 - m_LastSelected: 0 ---- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -141,22 +37,22 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 7} - - {fileID: 2} - - {fileID: 8} + - {fileID: 3} + - {fileID: 4} + - {fileID: 5} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1920 - height: 997 + width: 1536 + height: 781 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 &7 +--- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -173,15 +69,42 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1920 + width: 1536 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LoadedToolbars: - - {fileID: 19} - m_MainToolbar: {fileID: 19} - m_LastLoadedLayoutName: Default ---- !u!114 &8 + - {fileID: 17} + m_MainToolbar: {fileID: 17} + 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: 911, y: 442} + m_MaxSize: {x: 22006, y: 10021} + vertical: 0 + controlID: 129 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -197,12 +120,12 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 977 - width: 1920 + y: 761 + width: 1536 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} ---- !u!114 &9 +--- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -216,17 +139,95 @@ MonoBehaviour: m_EditorClassIdentifier: m_Children: - {fileID: 10} - - {fileID: 5} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1531 - height: 947 - m_MinSize: {x: 402, y: 342} - m_MaxSize: {x: 8002, y: 8042} + width: 826 + height: 731 + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} vertical: 1 - controlID: 212 + controlID: 40 +--- !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: 826 + y: 0 + width: 202 + height: 731 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + 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: 1028 + 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: 1260 + y: 0 + width: 276 + 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 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -236,22 +237,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_Children: - - {fileID: 4} - - {fileID: 11} + m_Children: [] m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1531 - height: 626 - m_MinSize: {x: 402, y: 221} - m_MaxSize: {x: 8002, y: 4021} - vertical: 0 - controlID: 213 + width: 826 + height: 304 + 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 --- !u!114 &11 MonoBehaviour: m_ObjectHideFlags: 52 @@ -262,24 +264,22 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneView + m_Name: m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 379 - y: 0 - width: 1152 - height: 626 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} - m_ActualView: {fileID: 16} + x: 0 + y: 304 + width: 826 + height: 427 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 16} - - {fileID: 17} - - {fileID: 12} + - {fileID: 15} m_Selected: 0 - m_LastSelected: 1 + m_LastSelected: 0 --- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 @@ -289,23 +289,89 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12111, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 400, y: 100} - m_MaxSize: {x: 2048, y: 2048} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_TitleContent: - m_Text: Asset Store - m_Image: {fileID: -8693916549880196297, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Hierarchy + m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 468 - y: 181 - width: 973 - height: 501 + x: 826.4 + y: 73.6 + width: 200 + height: 710 m_ViewDataDictionary: {fileID: 0} + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: 44beffffd6dafffffef1ffff74f5ffff3efbffff40fbffff88420000645c0000345d0000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 10} + 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: 1260 + y: 73.6 + width: 275 + 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} @@ -321,14 +387,14 @@ MonoBehaviour: m_MaxSize: {x: 10000, y: 10000} m_TitleContent: m_Text: Project - m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 0 - y: 646 - width: 1530 - height: 353 + x: 1028 + y: 73.6 + width: 230 + height: 710 m_ViewDataDictionary: {fileID: 0} m_SearchFilter: m_NameFilter: @@ -343,22 +409,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Scripts/MainMenuScripts + - Assets/Scenes m_Globs: [] m_OriginalText: m_ViewMode: 1 - m_StartGridSize: 64 + m_StartGridSize: 16 m_LastFolders: - - Assets/Scripts/MainMenuScripts - m_LastFoldersGridSize: -1 - m_LastProjectPath: "E:\\Projects \u0441#\\Unity\\omega" + - Assets/Scenes + m_LastFoldersGridSize: 16 + m_LastProjectPath: C:\Users\Dara\Documents\1\PO m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 179} - m_SelectedIDs: b84e0000 - m_LastClickedID: 20152 - m_ExpandedIDs: 00000000c64c0000c84c0000ca4c0000cc4c0000ce4c0000d04c0000d24c0000684d000000ca9a3b + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 3a430000 + m_LastClickedID: 17210 + m_ExpandedIDs: 0000000016430000184300001a4300001c4300001e430000204300002243000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -374,7 +440,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 0} + m_ClientGUIView: {fileID: 8} m_SearchString: m_CreateAssetUtility: m_EndAction: {fileID: 0} @@ -386,7 +452,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000c64c0000c84c0000ca4c0000cc4c0000ce4c0000d04c0000d24c000000ca9a3b + m_ExpandedIDs: 0000000016430000184300001a4300001c4300001e4300002043000022430000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -411,10 +477,10 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: b2a20000 - m_LastClickedInstanceID: 41650 + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 m_HadKeyboardFocusLastEvent: 1 - m_ExpandedInstanceIDs: c6230000 + m_ExpandedInstanceIDs: 18190000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -430,7 +496,7 @@ MonoBehaviour: m_IsRenaming: 0 m_OriginalEventType: 11 m_IsRenamingFilename: 1 - m_ClientGUIView: {fileID: 5} + m_ClientGUIView: {fileID: 8} m_CreateAssetUtility: m_EndAction: {fileID: 0} m_InstanceID: 0 @@ -439,46 +505,9 @@ MonoBehaviour: m_ResourceFile: m_NewAssetIndexInList: -1 m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 64 + m_GridSize: 16 m_SkipHiddenPackages: 0 - 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} + m_DirectoriesAreaWidth: 110 --- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 @@ -488,51 +517,86 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + 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: Hierarchy - m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0} + m_Text: Game + m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 x: 0 - y: 73 - width: 378 - height: 605 + y: 377.6 + width: 825 + height: 406 m_ViewDataDictionary: {fileID: 0} - m_SceneHierarchy: - m_TreeViewState: - scrollPos: {x: 0, y: 0} - m_SelectedIDs: 924e0000 - m_LastClickedID: 20114 - m_ExpandedIDs: 18defeff68defefff8e0feffd40affff340bffffbe14ffffbc1dffff361fffffc035ffffda35fffff435ffff983fffff8c57ffffc874ffffe884ffff2a85ffff5e89ffff3a8affffe291ffff8eacffff5aaeffff96aeffffceafffffdab2ffff78c1ffff14c3ffff70c5ffff90cdffff88dfffff1ae9ffff9aeaffffe6f9ffff - m_RenameOverlay: - m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: - m_EditFieldRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 0 - height: 0 - m_UserData: 0 - m_IsWaitingForDelay: 0 - m_IsRenaming: 0 - m_OriginalEventType: 11 - m_IsRenamingFilename: 0 - m_ClientGUIView: {fileID: 4} - m_SearchString: - m_ExpandedScenes: [] - m_CurrenRootInstanceID: 0 - m_LockTracker: - m_IsLocked: 0 - m_CurrentSortingName: TransformSorting - m_WindowGUID: 6d9414b650e7cec488f30bf477bedba3 + m_SerializedViewNames: [] + m_SerializedViewValues: [] + m_PlayModeViewName: GameView + m_ShowGizmos: 0 + m_TargetDisplay: 0 + m_ClearColor: {r: 0, g: 0, b: 0, a: 0} + m_TargetSize: {x: 1920, y: 1080} + m_TextureFilterMode: 0 + m_TextureHideFlags: 61 + m_RenderIMGUI: 1 + m_MaximizeOnPlay: 0 + m_UseMipMap: 0 + m_VSyncEnabled: 0 + m_Gizmos: 0 + m_Stats: 0 + m_SelectedSizes: 00000000000000000000000006000000000000000000000000000000000000000000000000000000 + m_ZoomArea: + m_HRangeLocked: 0 + m_VRangeLocked: 0 + hZoomLockedByDefault: 0 + vZoomLockedByDefault: 0 + m_HBaseRangeMin: -768 + m_HBaseRangeMax: 768 + m_VBaseRangeMin: -432 + m_VBaseRangeMax: 432 + m_HAllowExceedBaseRangeMin: 1 + m_HAllowExceedBaseRangeMax: 1 + m_VAllowExceedBaseRangeMin: 1 + m_VAllowExceedBaseRangeMax: 1 + m_ScaleWithWindow: 0 + m_HSlider: 0 + m_VSlider: 0 + m_IgnoreScrollWheelUntilClicked: 0 + m_EnableMouseInput: 1 + m_EnableSliderZoomHorizontal: 0 + m_EnableSliderZoomVertical: 0 + m_UniformScale: 1 + m_UpDirection: 1 + m_DrawArea: + serializedVersion: 2 + x: 0 + y: 21 + width: 825 + height: 385 + m_Scale: {x: 0.44560185, y: 0.44560185} + m_Translation: {x: 412.5, y: 192.5} + m_MarginLeft: 0 + m_MarginRight: 0 + m_MarginTop: 0 + m_MarginBottom: 0 + m_LastShownAreaInsideMargins: + serializedVersion: 2 + x: -925.7143 + y: -432 + width: 1851.4286 + height: 864 + m_MinimalGUI: 1 + m_defaultScale: 0.44560185 + m_LastWindowPixelSize: {x: 1031.25, y: 507.5} + m_ClearInEditMode: 1 + m_NoCameraWarning: 1 + m_LowResolutionForAspectRatios: 00000000000000000000 + m_XRRenderMode: 0 + m_RenderTexture: {fileID: 0} --- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 @@ -549,17 +613,17 @@ MonoBehaviour: m_MaxSize: {x: 4000, y: 4000} m_TitleContent: m_Text: Scene - m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0} + m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0} m_Tooltip: m_Pos: serializedVersion: 2 - x: 379 - y: 73 - width: 1150 - height: 605 + x: 0 + y: 73.6 + width: 825 + height: 283 m_ViewDataDictionary: {fileID: 0} m_ShowContextualTools: 0 - m_WindowGUID: 9d5f0e9f01c36574eb312c2f04eed96f + m_WindowGUID: d52a7f6dc5db5f8489a3af2606ac8314 m_Gizmos: 1 m_OverrideSceneCullingMask: 6917529027641081856 m_SceneIsLit: 1 @@ -569,9 +633,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1078.0482, y: 496.9724, z: -88.59586} + m_Target: {x: 844.64734, y: 590.2435, z: 1.3679504} speed: 2 - m_Value: {x: 1078.0482, y: 496.9724, z: -88.59586} + m_Value: {x: 844.64734, y: 590.2435, z: 1.3679504} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -622,9 +686,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 754.3985 + m_Target: 661.67755 speed: 2 - m_Value: 754.3985 + m_Value: 661.67755 m_Ortho: m_Target: 1 speed: 2 @@ -650,120 +714,6 @@ 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: 605 - 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: 1150, y: 584} - 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: -575 - m_HBaseRangeMax: 575 - m_VBaseRangeMin: -292 - m_VBaseRangeMax: 292 - 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: 0 - m_EnableSliderZoomHorizontal: 0 - m_EnableSliderZoomVertical: 0 - m_UniformScale: 1 - m_UpDirection: 1 - m_DrawArea: - serializedVersion: 2 - x: 0 - y: 21 - width: 1150 - height: 584 - m_Scale: {x: 1, y: 1} - m_Translation: {x: 575, y: 292} - m_MarginLeft: 0 - m_MarginRight: 0 - m_MarginTop: 0 - m_MarginBottom: 0 - m_LastShownAreaInsideMargins: - serializedVersion: 2 - x: -575 - y: -292 - width: 1150 - height: 584 - m_MinimalGUI: 1 - m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1150, y: 605} - 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: 699 - width: 1530 - height: 300 - m_ViewDataDictionary: {fileID: 0} ---- !u!114 &19 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} diff --git a/Library/EditorOnlyScriptingSettings.json b/Library/EditorOnlyScriptingSettings.json index bb6c895f..8de34d9c 100644 --- a/Library/EditorOnlyScriptingSettings.json +++ b/Library/EditorOnlyScriptingSettings.json @@ -1 +1 @@ -{"m_DefineSymbols":{"m_Value":[],"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":true,"m_Initialized":true}} \ No newline at end of file +{"m_DefineSymbols":{"m_Value":[],"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":false,"m_Initialized":true}} \ No newline at end of file diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 41b5394e..94d80bfe 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/LastSceneManagerSetup.txt b/Library/LastSceneManagerSetup.txt index d72638ff..7fa3a17e 100644 --- a/Library/LastSceneManagerSetup.txt +++ b/Library/LastSceneManagerSetup.txt @@ -1,4 +1,8 @@ sceneSetups: +- path: Assets/Scenes/DataHolder.unity + isLoaded: 1 + isActive: 0 + isSubScene: 0 - path: Assets/Scenes/MainMenu.unity isLoaded: 1 isActive: 1 diff --git a/Library/PackageManager/ProjectCache b/Library/PackageManager/ProjectCache index f492370a..9a376399 100644 --- a/Library/PackageManager/ProjectCache +++ b/Library/PackageManager/ProjectCache @@ -1,20 +1,20 @@ m_ProjectFiles: m_ManifestFileStatus: - m_FilePath: "E:/Projects \u0441#/Unity/omega/Packages/manifest.json" + m_FilePath: C:/Users/Dara/Documents/1/PO/Packages/manifest.json m_PathExists: 1 m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637777933765572559 - m_Hash: 3969132510 + ticks: 637775701382787131 + m_Hash: 1047088217 m_LockFileStatus: - m_FilePath: "E:/Projects \u0441#/Unity/omega/Packages/packages-lock.json" + m_FilePath: C:/Users/Dara/Documents/1/PO/Packages/packages-lock.json m_PathExists: 1 m_ContentTrackingEnabled: 1 m_ModificationDate: serializedVersion: 2 - ticks: 637777933765582533 - m_Hash: 397170090 + ticks: 637775804813421276 + m_Hash: 1522590259 m_EmbeddedPackageManifests: m_ManifestsStatus: {} m_PackageAssets: @@ -25,7 +25,7 @@ m_PackageAssets: isDirectDependency: 1 version: 5.0.7 source: 1 - resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.animation@5.0.7" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.pixel-perfect@4.0.1" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.psdimporter@4.1.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.sprite@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.spriteshape@5.1.4" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.tilemap@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.collab-proxy@1.9.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.rider@2.0.7" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.visualstudio@2.0.11" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ide.vscode@1.2.4" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.test-framework@1.1.29" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.textmeshpro@3.0.6" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.timeline@1.4.8" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.toolchain.win-x86_64-linux-x86_64@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ugui@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.ai@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.androidjni@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.animation@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.assetbundle@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.audio@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.cloth@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.director@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.imageconversion@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.imgui@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.jsonserialize@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.particlesystem@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.physics@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.physics2d@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.screencapture@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.terrain@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.terrainphysics@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.tilemap@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.ui@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.uielements@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.umbra@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unityanalytics@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequest@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestassetbundle@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestaudio@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequesttexture@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.unitywebrequestwww@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.vehicles@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.video@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.vr@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.wind@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.xr@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.subsystems@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.modules.uielementsnative@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.sysroot@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.sysroot.linux-x86_64@1.0.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\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: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.ext.nunit@1.0.6" + resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.ext.nunit@1.0.6 assetPath: Packages/com.unity.ext.nunit name: com.unity.ext.nunit displayName: Custom NUnit @@ -3516,8 +3516,18 @@ 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: [] @@ -3538,7 +3548,7 @@ m_PackageAssets: entitlements: isAllowed: 1 isAssetStorePackage: 0 - datePublishedTicks: 0 + datePublishedTicks: 637429759280000000 documentationUrl: hasRepository: 1 repository: @@ -3551,7 +3561,7 @@ m_PackageAssets: isDirectDependency: 0 version: 1.1.0 source: 1 - resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.mathematics@1.1.0" + resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.mathematics@1.1.0 assetPath: Packages/com.unity.mathematics name: com.unity.mathematics displayName: Mathematics @@ -3567,12 +3577,40 @@ 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 - verified: 1.2.1 + - 1.2.4 + - 1.2.5 + verified: 1.2.5 dependencies: [] resolvedDependencies: [] keywords: @@ -3589,7 +3627,7 @@ m_PackageAssets: entitlements: isAllowed: 1 isAssetStorePackage: 0 - datePublishedTicks: 0 + datePublishedTicks: 636984649280000000 documentationUrl: hasRepository: 1 repository: @@ -3602,7 +3640,7 @@ m_PackageAssets: isDirectDependency: 0 version: 4.0.3 source: 1 - resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.common@4.0.3" + resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.common@4.0.3 assetPath: Packages/com.unity.2d.common name: com.unity.2d.common displayName: 2D Common @@ -3634,7 +3672,6 @@ 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 @@ -3643,13 +3680,10 @@ 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 - - 4.0.4 - verified: 4.0.4 + verified: 4.0.3 dependencies: - name: com.unity.2d.sprite version: 1.0.0 @@ -3695,7 +3729,7 @@ m_PackageAssets: isDirectDependency: 0 version: 4.0.2 source: 1 - resolvedPath: "E:\\Projects \u0441#\\Unity\\omega\\Library\\PackageCache\\com.unity.2d.path@4.0.2" + resolvedPath: C:\Users\Dara\Documents\1\PO\Library\PackageCache\com.unity.2d.path@4.0.2 assetPath: Packages/com.unity.2d.path name: com.unity.2d.path displayName: 2D Path @@ -3761,5 +3795,5 @@ m_PackageAssets: path: m_LocalPackages: m_LocalFileStatus: [] -m_ProjectPath: "E:/Projects \u0441#/Unity/omega/Packages" +m_ProjectPath: C:/Users/Dara/Documents/1/PO/Packages m_EditorVersion: 2020.3.19f1 (68f137dc9bbe) diff --git a/Library/PackageManager/ProjectCache.md5 b/Library/PackageManager/ProjectCache.md5 index da660c77..755ead5d 100644 --- a/Library/PackageManager/ProjectCache.md5 +++ b/Library/PackageManager/ProjectCache.md5 @@ -1 +1 @@ -f5e98bd93cbb082bc13febd9deb805dc \ No newline at end of file +41bc876834200554b9cdf46ac8dbc2f9 \ No newline at end of file diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 2fbcc0c0..874f9d6d 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index ec5fca67..de8d48ca 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index d4720ce2..112042a7 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/ScriptAssemblies/PsdPlugin.dll b/Library/ScriptAssemblies/PsdPlugin.dll index caccf778..efe9b3c1 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.dll and b/Library/ScriptAssemblies/PsdPlugin.dll differ diff --git a/Library/ScriptAssemblies/PsdPlugin.pdb b/Library/ScriptAssemblies/PsdPlugin.pdb index 3015e624..41078b3b 100644 Binary files a/Library/ScriptAssemblies/PsdPlugin.pdb and b/Library/ScriptAssemblies/PsdPlugin.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll index e8d6ee55..9a9860a0 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb index b5a4ff48..aaf20678 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll index 13646553..0d1e8c7a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb index b7748483..431430fe 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll index 06a4fb89..cbddc330 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb index 5e00a230..4a3b2ec9 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll index b5300c60..c0a71888 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb index 24e96659..ed3e42b4 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll index 769c9658..e537c3f5 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb index fd981d76..0068b4f6 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.Common.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll index 93f027c5..4f51206a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb index 382cdc0d..eb9b2b8c 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll index f51d4ad3..47b8a95f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb index ad95dd7d..6c66609a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.IK.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll index 23140a8a..59b93246 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb index 95263046..bd38990a 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Path.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll index d690c2e4..539702b1 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb index 4470203f..d3e739fb 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll index d9e38d7d..e34160df 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb index 529136cd..b36734b9 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb and b/Library/ScriptAssemblies/Unity.2D.PixelPerfect.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll index 027c77c5..4c7ff78e 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb index 33b22cd2..dda1e006 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index ba25b4fd..986af2b2 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb index 7c605749..5551d301 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll index f7f8290d..e13a4767 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb index bc6604aa..31c5057f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll index de13f797..4d13137f 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb index a3b570f1..a84b8167 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb and b/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.pdb differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index e75c56a3..a3d4f97e 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb index 8ea57389..f1f0272c 100644 Binary files a/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb and b/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index abba4ca1..c351c94d 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb index cccc760a..77fc49ba 100644 Binary files a/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb and b/Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll index 6558774f..714428ec 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb index 2757fc4a..657be309 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll index bc4a2c32..5fd43353 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb index 5d999ac0..4d470f11 100644 Binary files a/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb and b/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll index 61d74a6a..d4124b93 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb index 55e4fbbf..4c81a72b 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.dll b/Library/ScriptAssemblies/Unity.Mathematics.dll index 19086d44..7be0cbc6 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.dll and b/Library/ScriptAssemblies/Unity.Mathematics.dll differ diff --git a/Library/ScriptAssemblies/Unity.Mathematics.pdb b/Library/ScriptAssemblies/Unity.Mathematics.pdb index 43973a94..b2a27d09 100644 Binary files a/Library/ScriptAssemblies/Unity.Mathematics.pdb and b/Library/ScriptAssemblies/Unity.Mathematics.pdb differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll index 19bf2cb3..0889bb47 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb index 1a71296d..b5cae5d8 100644 Binary files a/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb and b/Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/Library/ScriptAssemblies/Unity.Rider.Editor.dll index 4378824b..a349f10d 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb index a00ea0f8..caa4b7f1 100644 Binary files a/Library/ScriptAssemblies/Unity.Rider.Editor.pdb and b/Library/ScriptAssemblies/Unity.Rider.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll index 47d41cbd..f8ff5c4f 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb index 24b2484c..5e1bac6b 100644 Binary files a/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb and b/Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll index 3829f3af..7bb6cdd8 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb index f82e8310..055d5467 100644 Binary files a/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb and b/Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index 8972f862..0cdf1e6f 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb index ba004d41..a39a2c3e 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/Library/ScriptAssemblies/Unity.TextMeshPro.dll index 718b1f57..76563113 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb index 2b1177c5..db6662f0 100644 Binary files a/Library/ScriptAssemblies/Unity.TextMeshPro.pdb and b/Library/ScriptAssemblies/Unity.TextMeshPro.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index dafb03d3..ee0e0c2c 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb index eba91639..70e6007f 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb and b/Library/ScriptAssemblies/Unity.Timeline.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.dll b/Library/ScriptAssemblies/Unity.Timeline.dll index 03f5b267..8ff5034c 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.dll and b/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/Library/ScriptAssemblies/Unity.Timeline.pdb b/Library/ScriptAssemblies/Unity.Timeline.pdb index d8230e52..683fa594 100644 Binary files a/Library/ScriptAssemblies/Unity.Timeline.pdb and b/Library/ScriptAssemblies/Unity.Timeline.pdb differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll index 4cc384dc..e6d8f32b 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.dll differ diff --git a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb index 51fde0d7..8f8d2bf6 100644 Binary files a/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb and b/Library/ScriptAssemblies/Unity.Toolchain.Win-x86_64-Linux-x86_64.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index b25285b4..a0278ea8 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb index 9a1936e6..3d4b6ac2 100644 Binary files a/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb and b/Library/ScriptAssemblies/Unity.VSCode.Editor.pdb differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll index fd535a73..bb58ff1a 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll differ diff --git a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb index e4087d7a..9e9f81eb 100644 Binary files a/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb and b/Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index 651b718a..813588ed 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb index 0e815e8b..ad67e538 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEditor.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.dll b/Library/ScriptAssemblies/UnityEditor.UI.dll index fbd9c617..7bfa46c9 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.dll and b/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEditor.UI.pdb b/Library/ScriptAssemblies/UnityEditor.UI.pdb index 8db16baf..161f8d02 100644 Binary files a/Library/ScriptAssemblies/UnityEditor.UI.pdb and b/Library/ScriptAssemblies/UnityEditor.UI.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index 038c1e87..34f7663c 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb index eee59eec..83c0f22c 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb and b/Library/ScriptAssemblies/UnityEngine.TestRunner.pdb differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.dll b/Library/ScriptAssemblies/UnityEngine.UI.dll index 6d593645..6476367a 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.dll and b/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/Library/ScriptAssemblies/UnityEngine.UI.pdb b/Library/ScriptAssemblies/UnityEngine.UI.pdb index d483b22a..f2c20575 100644 Binary files a/Library/ScriptAssemblies/UnityEngine.UI.pdb and b/Library/ScriptAssemblies/UnityEngine.UI.pdb differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index b30be9d1..3f25a1f3 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Logs/ApiUpdaterCheck.txt b/Logs/ApiUpdaterCheck.txt index eab3ceb4..3105fdc5 100644 --- a/Logs/ApiUpdaterCheck.txt +++ b/Logs/ApiUpdaterCheck.txt @@ -568,3 +568,123 @@ C# parse time : 121ms candidates check time : 40ms console write time : 0ms +[api-updater (non-obsolete-error-filter)] 17.01.2022 10:25:44 : 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 : 836,8699ms +moved types parse time: 50ms +candidates parse time : 1ms +C# parse time : 193ms +candidates check time : 47ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 10:26:23 : 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 : 126,582ms +moved types parse time: 73ms +candidates parse time : 1ms +C# parse time : 181ms +candidates check time : 52ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 10:43:17 : 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 : 76,7953ms +moved types parse time: 42ms +candidates parse time : 1ms +C# parse time : 176ms +candidates check time : 25ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 10:43:25 : 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 : 69,8128ms +moved types parse time: 41ms +candidates parse time : 0ms +C# parse time : 149ms +candidates check time : 25ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 11:33:41 : 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 : 664,1221ms +moved types parse time: 46ms +candidates parse time : 1ms +C# parse time : 196ms +candidates check time : 38ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:44:33 : 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 : 112,1263ms +moved types parse time: 45ms +candidates parse time : 1ms +C# parse time : 160ms +candidates check time : 30ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:44:57 : 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 : 65,8006ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 207ms +candidates check time : 26ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:44:59 : 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 : 70,1434ms +moved types parse time: 42ms +candidates parse time : 1ms +C# parse time : 146ms +candidates check time : 23ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:45:14 : 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 : 67,8497ms +moved types parse time: 44ms +candidates parse time : 1ms +C# parse time : 146ms +candidates check time : 24ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:45:23 : 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 : 66,9149ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 142ms +candidates check time : 22ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:45:30 : 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 : 128,6556ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 147ms +candidates check time : 23ms +console write time : 0ms + +[api-updater (non-obsolete-error-filter)] 17.01.2022 13:45:41 : 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 : 71,8069ms +moved types parse time: 42ms +candidates parse time : 0ms +C# parse time : 144ms +candidates check time : 23ms +console write time : 0ms + diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index 9f069659..e1f4e185 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ C:/Users/Dara/Documents/1/PO -logFile Logs/AssetImportWorker0.log -srvPort -58745 +56111 Successfully changed project path to: C:/Users/Dara/Documents/1/PO C:/Users/Dara/Documents/1/PO Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 60.20 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 38.40 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 @@ -35,98 +35,332 @@ 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:56988 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56840 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll -Registered in 0.004076 seconds. +Registered in 0.002235 seconds. Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 64.40 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 36.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.553 seconds +- Completed reload, in 3.619 seconds Domain Reload Profiling: - ReloadAssembly (1553ms) - BeginReloadAssembly (63ms) + ReloadAssembly (3619ms) + BeginReloadAssembly (43ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (584ms) - LoadAssemblies (62ms) + EndReloadAssembly (442ms) + LoadAssemblies (42ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) + SetupTypeCache (187ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (244ms) + RebuildScriptCaches (27ms) + SetupLoadedEditorAssemblies (153ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (64ms) - BeforeProcessingInitializeOnLoad (28ms) - ProcessInitializeOnLoadAttributes (108ms) - ProcessInitializeOnLoadMethodAttributes (33ms) + RefreshPlugins (36ms) + BeforeProcessingInitializeOnLoad (15ms) + ProcessInitializeOnLoadAttributes (70ms) + ProcessInitializeOnLoadMethodAttributes (25ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.003283 seconds. +Registered in 0.002289 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 58.79 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 37.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.528 seconds +- Completed reload, in 1.070 seconds Domain Reload Profiling: - ReloadAssembly (1529ms) - BeginReloadAssembly (190ms) + ReloadAssembly (1071ms) + BeginReloadAssembly (123ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (1247ms) - LoadAssemblies (121ms) + CreateAndSetChildDomain (17ms) + EndReloadAssembly (897ms) + LoadAssemblies (81ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (389ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (492ms) + SetupTypeCache (303ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (358ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) + InitializePlatformSupportModulesInManaged (6ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (59ms) - BeforeProcessingInitializeOnLoad (110ms) - ProcessInitializeOnLoadAttributes (285ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + RefreshPlugins (37ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2135 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: 2575. +Total: 3.039800 ms (FindLiveObjects: 0.198500 ms CreateObjectMapping: 0.101500 ms MarkObjects: 2.657200 ms DeleteObjects: 0.081700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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/Scenes + artifactKey: Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes using Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c97edb7ac439b27978cf6a95748b211') in 0.034473 seconds + Import took 0.046287 seconds . + +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 2.84 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: 2575. +Total: 3.039800 ms (FindLiveObjects: 0.209100 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.719800 ms DeleteObjects: 0.027700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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 Prepare +Registering precompiled user dll's ... +Registered in 0.083640 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.075 seconds +Domain Reload Profiling: + ReloadAssembly (1075ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (904ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2116 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: 2577. +Total: 2.497700 ms (FindLiveObjects: 0.180100 ms CreateObjectMapping: 0.077900 ms MarkObjects: 2.226300 ms DeleteObjects: 0.012600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 422.365638 seconds. + path: Assets/Scenes/MainMenu.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/MainMenu.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c86b4266b93bd0c07d3387e042d02513') in 0.026189 seconds + Import took 0.030879 seconds . + +======================================================================== +Received Import Request. + Time since last request: 10.348328 seconds. + path: Assets/Scenes/Inventory.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4416e7ab95df425b2b28302b8b6a6077') in 0.010476 seconds + Import took 0.015593 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.096864 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: 'ba84630d0e0f040350ca210161cee916') in 0.009223 seconds + Import took 0.013862 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002389 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.393 seconds +Domain Reload Profiling: + ReloadAssembly (1394ms) + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1172ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (553ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (209ms) + ProcessInitializeOnLoadAttributes (322ms) + ProcessInitializeOnLoadMethodAttributes (6ms) AfterProcessingInitializeOnLoad (8ms) 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.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2580. +Total: 2.842000 ms (FindLiveObjects: 0.190500 ms CreateObjectMapping: 0.084800 ms MarkObjects: 2.532100 ms DeleteObjects: 0.033400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004334 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.177 seconds +Domain Reload Profiling: + ReloadAssembly (1177ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (945ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds -Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2124 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.8 MB. -System memory in use after: 95.9 MB. +Unloading 2117 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 26 unused Assets to reduce memory usage. Loaded Objects now: 2564. -Total: 4.927800 ms (FindLiveObjects: 0.248600 ms CreateObjectMapping: 0.165000 ms MarkObjects: 4.406400 ms DeleteObjects: 0.106500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2582. +Total: 2.754100 ms (FindLiveObjects: 0.226100 ms CreateObjectMapping: 0.078000 ms MarkObjects: 2.434700 ms DeleteObjects: 0.014300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -136,125 +370,58 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:video-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. - path: Assets/Graphics - artifactKey: Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics using Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69da5b4fc77a5fac7cfff01a101f414a') in 0.014228 seconds - Import took 0.018836 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000287 seconds. - path: Assets/Prefabs - artifactKey: Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs using Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab464ff287aed2b45edc76128fbfdea8') in 0.011028 seconds - Import took 0.016225 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000304 seconds. - path: Assets/Scripts - artifactKey: Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts using Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '452aa6f74274641c3e32d623190861bc') in 0.010683 seconds - Import took 0.015390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000291 seconds. - path: Assets/Scenes - artifactKey: Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes using Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c97edb7ac439b27978cf6a95748b211') in 0.010084 seconds - Import took 0.015294 seconds . - -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 7.81 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.6 MB. -System memory in use after: 52.7 MB. - -Unloading 12 unused Assets to reduce memory usage. Loaded Objects now: 2564. -Total: 5.384200 ms (FindLiveObjects: 0.534500 ms CreateObjectMapping: 0.249100 ms MarkObjects: 4.569200 ms DeleteObjects: 0.029300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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: 323.536271 seconds. - path: Assets/Prefabs/Player - artifactKey: Guid(499a860da62678c44b35ae7850d04c9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Player using Guid(499a860da62678c44b35ae7850d04c9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b960dd464665bf920e1dbf0db8fc4e76') in 0.011623 seconds - Import took 0.019633 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.320304 seconds. - path: Assets/Prefabs/Player/Player.prefab - artifactKey: Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Player/Player.prefab using Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb206f171440b4b681415dc261627126') in 0.097372 seconds - Import took 0.103130 seconds . - -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004518 seconds. +Registered in 0.004304 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.480 seconds +- Completed reload, in 1.181 seconds Domain Reload Profiling: - ReloadAssembly (1481ms) - BeginReloadAssembly (174ms) + ReloadAssembly (1182ms) + BeginReloadAssembly (125ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - EndReloadAssembly (1205ms) - LoadAssemblies (134ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (991ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (351ms) + SetupTypeCache (322ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (478ms) + RebuildScriptCaches (111ms) + SetupLoadedEditorAssemblies (286ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (136ms) - ProcessInitializeOnLoadAttributes (314ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (7ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (51ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.0 MB. -System memory in use after: 94.1 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.3 MB. +System memory in use after: 94.5 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2566. -Total: 4.207000 ms (FindLiveObjects: 0.682100 ms CreateObjectMapping: 0.292200 ms MarkObjects: 3.156700 ms DeleteObjects: 0.074900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2584. +Total: 3.326900 ms (FindLiveObjects: 0.423900 ms CreateObjectMapping: 0.112000 ms MarkObjects: 2.768700 ms DeleteObjects: 0.020400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -270,52 +437,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004091 seconds. +Registered in 0.003577 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.466 seconds +- Completed reload, in 1.408 seconds Domain Reload Profiling: - ReloadAssembly (1466ms) - BeginReloadAssembly (156ms) + ReloadAssembly (1408ms) + BeginReloadAssembly (176ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (21ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1222ms) - LoadAssemblies (133ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1167ms) + LoadAssemblies (94ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (392ms) + SetupTypeCache (405ms) ReleaseScriptCaches (2ms) - RebuildScriptCaches (90ms) - SetupLoadedEditorAssemblies (399ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (435ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (125ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (285ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.0 MB. -System memory in use after: 94.2 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2568. -Total: 3.140300 ms (FindLiveObjects: 0.304100 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.691900 ms DeleteObjects: 0.040800 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. +Total: 2.742700 ms (FindLiveObjects: 0.203900 ms CreateObjectMapping: 0.081000 ms MarkObjects: 2.437500 ms DeleteObjects: 0.019000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -331,7 +498,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004538 seconds. +Registered in 0.002754 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -340,601 +507,43 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.626 seconds +- Completed reload, in 1.360 seconds Domain Reload Profiling: - ReloadAssembly (1627ms) - BeginReloadAssembly (208ms) + ReloadAssembly (1360ms) + BeginReloadAssembly (123ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) - ReleaseScriptingObjects (1ms) - CreateAndSetChildDomain (73ms) - EndReloadAssembly (1321ms) - LoadAssemblies (158ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1169ms) + LoadAssemblies (92ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (534ms) + SetupTypeCache (483ms) ReleaseScriptCaches (1ms) RebuildScriptCaches (65ms) - SetupLoadedEditorAssemblies (400ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (119ms) - ProcessInitializeOnLoadAttributes (253ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2570. -Total: 3.459100 ms (FindLiveObjects: 0.195700 ms CreateObjectMapping: 0.086900 ms MarkObjects: 3.142700 ms DeleteObjects: 0.032700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003636 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.596 seconds -Domain Reload Profiling: - ReloadAssembly (1597ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (46ms) - EndReloadAssembly (1354ms) - LoadAssemblies (125ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (577ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (401ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (111ms) - ProcessInitializeOnLoadAttributes (264ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2572. -Total: 4.453700 ms (FindLiveObjects: 0.203600 ms CreateObjectMapping: 0.077100 ms MarkObjects: 4.149300 ms DeleteObjects: 0.022200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004723 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.312 seconds -Domain Reload Profiling: - ReloadAssembly (1313ms) - BeginReloadAssembly (178ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (69ms) - EndReloadAssembly (1033ms) - LoadAssemblies (120ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (378ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (51ms) - SetupLoadedEditorAssemblies (343ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (94ms) - ProcessInitializeOnLoadAttributes (227ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2574. -Total: 2.982500 ms (FindLiveObjects: 0.222400 ms CreateObjectMapping: 0.082200 ms MarkObjects: 2.659300 ms DeleteObjects: 0.017500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 574.807730 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da913c7a220379a4187e6c777c790637') in 0.082913 seconds - Import took 0.087900 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000272 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1093fefd2bb7d92527e160d0f044f2d3') in 0.020513 seconds - Import took 0.026687 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000327 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1490fbc629d66d06f6942f3f7b48f12b') in 0.020900 seconds - Import took 0.027390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.706059 seconds. - path: Assets/Prefabs/Cards/AddStamina.prefab - artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '658d86f51f102e672638f0be0476b3b4') in 0.020044 seconds - Import took 0.025687 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000351 seconds. - path: Assets/Prefabs/Cards/SmallHealing.prefab - artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ed34858da52c9f85551a972b4c78b17') in 0.016513 seconds - Import took 0.022762 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000336 seconds. - path: Assets/Prefabs/Cards/BigHealing.prefab - artifactKey: Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/BigHealing.prefab using Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba9d51a0d6797c62fde25e652d836567') in 0.017518 seconds - Import took 0.026335 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000289 seconds. - path: Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab - artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd7e9f9e0f6cfe41cb6c8dab41d7801a2') in 0.020316 seconds - Import took 0.026284 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000302 seconds. - path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab - artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d62b028cca59e9ceb4f27d6473bf15f') in 0.019007 seconds - Import took 0.023972 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000290 seconds. - path: Assets/Prefabs/Cards/LongBigDamagePrefab.prefab - artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongBigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1d4b3c9412ceb0b9e8637fa92b17400') in 0.016048 seconds - Import took 0.021567 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.275359 seconds. - path: Assets/Scripts/Configs - artifactKey: Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs using Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '713bed461ae6034ae4e6ec70e5ebc847') in 0.007786 seconds - Import took 0.014653 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.477393 seconds. - path: Assets/Scripts/Configs/BattleConfigs - artifactKey: Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/BattleConfigs using Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '726eb51640982ba4c4a263e72a33d88d') in 0.009051 seconds - Import took 0.013564 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.044279 seconds. - path: Assets/Scripts/Configs/CardConfigs - artifactKey: Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs using Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d9650170d8ae61c72f00e7938872158') in 0.007607 seconds - Import took 0.013519 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.138119 seconds. - path: Assets/Scripts/Configs/CardConfigs/AddStamina.asset - artifactKey: Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fecaf6d2b43b4876966ccce8d929ecb2') in 0.006250 seconds - Import took 0.011257 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000248 seconds. - path: Assets/Scripts/Configs/CardConfigs/BigHealing.asset - artifactKey: Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/BigHealing.asset using Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '598e9f9c2ccfb23706bf5a4d204d71f2') in 0.005395 seconds - Import took 0.012963 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000266 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallHealing.asset - artifactKey: Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallHealing.asset using Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e01b85b19f1b877a94aee6b7df0d19d9') in 0.004425 seconds - Import took 0.008660 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000346 seconds. - path: Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset - artifactKey: Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset using Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b75b758917444c6801616f39c2db9424') in 0.008089 seconds - Import took 0.013569 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000318 seconds. - path: Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset - artifactKey: Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset using Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c57c5f75cc27167d776981d99617a05') in 0.011504 seconds - Import took 0.017779 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000330 seconds. - path: Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset - artifactKey: Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67e1e8060f84a2db2570ed60ec1490e7') in 0.012223 seconds - Import took 0.019574 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.006208 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.761 seconds -Domain Reload Profiling: - ReloadAssembly (1761ms) - BeginReloadAssembly (184ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - EndReloadAssembly (1469ms) - LoadAssemblies (151ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (487ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (81ms) - SetupLoadedEditorAssemblies (505ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (2ms) - BeforeProcessingInitializeOnLoad (146ms) - ProcessInitializeOnLoadAttributes (326ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2576. -Total: 6.430700 ms (FindLiveObjects: 0.247100 ms CreateObjectMapping: 0.107900 ms MarkObjects: 6.016600 ms DeleteObjects: 0.057500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004486 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.305 seconds -Domain Reload Profiling: - ReloadAssembly (1306ms) - BeginReloadAssembly (167ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (1ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (1043ms) - LoadAssemblies (133ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (337ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (54ms) - SetupLoadedEditorAssemblies (361ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (102ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2578. -Total: 3.528600 ms (FindLiveObjects: 0.207100 ms CreateObjectMapping: 0.094000 ms MarkObjects: 3.206500 ms DeleteObjects: 0.019500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 380.619870 seconds. - path: Assets/Graphics/ArmorShield.png - artifactKey: Guid(d884309d8baaf99489bf92dce8492ac1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/ArmorShield.png using Guid(d884309d8baaf99489bf92dce8492ac1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca7c5acc374bf66611c5f8f88f1c1f7c') in 0.161091 seconds - Import took 0.165324 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005335 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.359 seconds -Domain Reload Profiling: - ReloadAssembly (1359ms) - BeginReloadAssembly (130ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1153ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (377ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (58ms) - SetupLoadedEditorAssemblies (421ms) + SetupLoadedEditorAssemblies (376ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (11ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (276ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. -Total: 4.069800 ms (FindLiveObjects: 0.379100 ms CreateObjectMapping: 0.147700 ms MarkObjects: 3.521500 ms DeleteObjects: 0.020200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 16.619682 seconds. - path: Assets/Graphics/Player - artifactKey: Guid(b890965c7e73ea44a8d6302e0658c4e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Player using Guid(b890965c7e73ea44a8d6302e0658c4e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81bcb850e4f6d019b66e0bbeead6b983') in 0.005789 seconds - Import took 0.010701 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.864781 seconds. - path: Assets/Graphics/CardIcons - artifactKey: Guid(c7a266cf63465fa4cb87416de6c7ce9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/CardIcons using Guid(c7a266cf63465fa4cb87416de6c7ce9f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e427582c3a48560fc7692c6c49b1c9a7') in 0.009603 seconds - Import took 0.014145 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.008521 seconds. - path: Assets/Graphics/Fonts - artifactKey: Guid(304cc87a729624f45a6dcbffdc263482) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Fonts using Guid(304cc87a729624f45a6dcbffdc263482) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee00cb74657593292a99064004dbe3fe') in 0.007679 seconds - Import took 0.012321 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.555883 seconds. - path: Assets/Graphics/Enemies - artifactKey: Guid(c78039bbf1fa6714b9de78e3b4877c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies using Guid(c78039bbf1fa6714b9de78e3b4877c9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd963f06b12c518a16263330e95983f6') in 0.011850 seconds - Import took 0.016541 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.254974 seconds. - path: Assets/Graphics/Enemies/AttackIcons - artifactKey: Guid(f2be6d186864fac44a1655cfffe67316) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/AttackIcons using Guid(f2be6d186864fac44a1655cfffe67316) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac2c84ecbe833d21fc33476464cdadc1') in 0.008715 seconds - Import took 0.013018 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007355 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.464 seconds -Domain Reload Profiling: - ReloadAssembly (1465ms) - BeginReloadAssembly (137ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1255ms) - LoadAssemblies (108ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (365ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (159ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (241ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (258ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) + 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.60 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. -Total: 4.650000 ms (FindLiveObjects: 0.418900 ms CreateObjectMapping: 0.194600 ms MarkObjects: 4.014500 ms DeleteObjects: 0.021100 ms) +Total: 3.052500 ms (FindLiveObjects: 0.192400 ms CreateObjectMapping: 0.078900 ms MarkObjects: 2.762700 ms DeleteObjects: 0.017400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -950,1602 +559,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003024 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.302 seconds -Domain Reload Profiling: - ReloadAssembly (1302ms) - BeginReloadAssembly (135ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1082ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (420ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (59ms) - SetupLoadedEditorAssemblies (311ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (85ms) - ProcessInitializeOnLoadAttributes (204ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. -Total: 3.133200 ms (FindLiveObjects: 0.169800 ms CreateObjectMapping: 0.072600 ms MarkObjects: 2.831100 ms DeleteObjects: 0.058800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003135 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.322 seconds -Domain Reload Profiling: - ReloadAssembly (1323ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1102ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (350ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (59ms) - SetupLoadedEditorAssemblies (385ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (102ms) - ProcessInitializeOnLoadAttributes (257ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. -Total: 3.938000 ms (FindLiveObjects: 0.236500 ms CreateObjectMapping: 0.097100 ms MarkObjects: 3.564600 ms DeleteObjects: 0.038700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004214 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.485 seconds -Domain Reload Profiling: - ReloadAssembly (1485ms) - BeginReloadAssembly (170ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (1226ms) - LoadAssemblies (139ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (421ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (70ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (252ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. -Total: 3.740800 ms (FindLiveObjects: 0.201300 ms CreateObjectMapping: 0.080300 ms MarkObjects: 3.442700 ms DeleteObjects: 0.015600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004538 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.537 seconds -Domain Reload Profiling: - ReloadAssembly (1538ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1309ms) - LoadAssemblies (108ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (389ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (467ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (140ms) - ProcessInitializeOnLoadAttributes (297ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. -Total: 3.411300 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.092100 ms MarkObjects: 3.086600 ms DeleteObjects: 0.017900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 817.012573 seconds. - path: Assets/Prefabs/Enemy - artifactKey: Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy using Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20f916880fa24b6f45793fa9bc0b3014') in 0.015278 seconds - Import took 0.021421 seconds . - -======================================================================== -Received Import Request. - Time since last request: 24.549482 seconds. - path: Assets/Prefabs/Enemy/Standart - artifactKey: Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart using Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28a2fb3f27a94be6c57946297a012979') in 0.010559 seconds - Import took 0.015595 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.768891 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f59cba937df4cc921944c3d01495e692') in 0.072566 seconds - Import took 0.076880 seconds . - -======================================================================== -Received Import Request. - Time since last request: 78.409732 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset - artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'abc1a1aca707fe36539b0dfbbd2fdec9') in 0.010538 seconds - Import took 0.015610 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.617727 seconds. - path: Assets/Scripts/Enemy - artifactKey: Guid(f1dc807a1231259428b7050d80cd4621) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy using Guid(f1dc807a1231259428b7050d80cd4621) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f4194e34a06c4fd5b6d162c5bf29215') in 0.004061 seconds - Import took 0.008507 seconds . - -======================================================================== -Received Import Request. - Time since last request: 14.630829 seconds. - path: Assets/Scripts/Enemy/LibraryTurnMethods.cs - artifactKey: Guid(b3ffd201925e0e64b9acf27bad35844d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy/LibraryTurnMethods.cs using Guid(b3ffd201925e0e64b9acf27bad35844d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56cee9086e835bd99f81540246fd4c39') in 0.020923 seconds - Import took 0.026181 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.675193 seconds. - path: Assets/Scripts/Enemy/Enemy.cs - artifactKey: Guid(2b59d706054351043a791f29cd4400e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy/Enemy.cs using Guid(2b59d706054351043a791f29cd4400e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cbef008cf30869f51741d6f10382f83') in 0.003886 seconds - Import took 0.008778 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.804157 seconds. - path: Assets/Scripts/Not used - artifactKey: Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Not used using Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a4259d2bc94fb340579e09c83e4d82a') in 0.009282 seconds - Import took 0.014837 seconds . - -======================================================================== -Received Import Request. - Time since last request: 31.330201 seconds. - path: Assets/Prefabs/Cards - artifactKey: Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards using Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '954b9adfa4c975d84af16527407bb810') in 0.009104 seconds - Import took 0.014006 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.141321 seconds. - path: Assets/Prefabs/Cards/SmallArmor.prefab - artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ab921ce428beee29acc129f7f112a03') in 0.036045 seconds - Import took 0.041497 seconds . - -======================================================================== -Received Import Request. - Time since last request: 50.564442 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset - artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fb0c6926de0142e818ca7bcb37cc1e0') in 0.004412 seconds - Import took 0.008664 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004558 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.611 seconds -Domain Reload Profiling: - ReloadAssembly (1611ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1373ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (446ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (460ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (146ms) - ProcessInitializeOnLoadAttributes (285ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2598. -Total: 3.589700 ms (FindLiveObjects: 0.236700 ms CreateObjectMapping: 0.104700 ms MarkObjects: 3.205900 ms DeleteObjects: 0.041300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007786 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.245 seconds -Domain Reload Profiling: - ReloadAssembly (2246ms) - BeginReloadAssembly (228ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (21ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (86ms) - EndReloadAssembly (1930ms) - LoadAssemblies (172ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (739ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (100ms) - SetupLoadedEditorAssemblies (545ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (175ms) - ProcessInitializeOnLoadAttributes (338ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. -Total: 4.025400 ms (FindLiveObjects: 0.239200 ms CreateObjectMapping: 0.111000 ms MarkObjects: 3.651500 ms DeleteObjects: 0.022300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005499 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.530 seconds -Domain Reload Profiling: - ReloadAssembly (1530ms) - BeginReloadAssembly (154ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (1286ms) - LoadAssemblies (122ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (416ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (415ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (127ms) - ProcessInitializeOnLoadAttributes (261ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. -Total: 5.416400 ms (FindLiveObjects: 0.271000 ms CreateObjectMapping: 0.122800 ms MarkObjects: 4.987000 ms DeleteObjects: 0.033200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 620.017705 seconds. - path: Assets/Prefabs/Cards/Standart - artifactKey: Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart using Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3dff83632a8c4cb0a4dde2c69ad8007') in 0.012727 seconds - Import took 0.018991 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004424 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.611 seconds -Domain Reload Profiling: - ReloadAssembly (1612ms) - BeginReloadAssembly (193ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1300ms) - LoadAssemblies (160ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (413ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (410ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (125ms) - ProcessInitializeOnLoadAttributes (260ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. -Total: 3.759200 ms (FindLiveObjects: 0.229500 ms CreateObjectMapping: 0.102200 ms MarkObjects: 3.406100 ms DeleteObjects: 0.020300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003290 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.401 seconds -Domain Reload Profiling: - ReloadAssembly (2402ms) - BeginReloadAssembly (250ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (19ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (91ms) - EndReloadAssembly (2012ms) - LoadAssemblies (276ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (704ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (94ms) - SetupLoadedEditorAssemblies (548ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (162ms) - ProcessInitializeOnLoadAttributes (351ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2606. -Total: 5.290300 ms (FindLiveObjects: 0.359500 ms CreateObjectMapping: 0.167200 ms MarkObjects: 4.728300 ms DeleteObjects: 0.033000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004227 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.634 seconds -Domain Reload Profiling: - ReloadAssembly (1635ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1392ms) - LoadAssemblies (125ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (420ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (65ms) - SetupLoadedEditorAssemblies (464ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (146ms) - ProcessInitializeOnLoadAttributes (284ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2608. -Total: 3.769800 ms (FindLiveObjects: 0.247000 ms CreateObjectMapping: 0.114000 ms MarkObjects: 3.386300 ms DeleteObjects: 0.021300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005232 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.959 seconds -Domain Reload Profiling: - ReloadAssembly (1960ms) - BeginReloadAssembly (389ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - EndReloadAssembly (1457ms) - LoadAssemblies (362ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (474ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (70ms) - SetupLoadedEditorAssemblies (445ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (283ms) - ProcessInitializeOnLoadMethodAttributes (10ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (16ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.97 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. -Total: 7.030900 ms (FindLiveObjects: 0.322800 ms CreateObjectMapping: 0.429900 ms MarkObjects: 6.240000 ms DeleteObjects: 0.035800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011700 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.761 seconds -Domain Reload Profiling: - ReloadAssembly (1762ms) - BeginReloadAssembly (205ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (15ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (80ms) - EndReloadAssembly (1462ms) - LoadAssemblies (126ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (441ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (74ms) - SetupLoadedEditorAssemblies (458ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (2ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (129ms) - ProcessInitializeOnLoadAttributes (294ms) - ProcessInitializeOnLoadMethodAttributes (11ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2612. -Total: 6.202200 ms (FindLiveObjects: 0.885000 ms CreateObjectMapping: 0.164500 ms MarkObjects: 5.118600 ms DeleteObjects: 0.031500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 190.986690 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b9a5c24cb807768b41213b79da9e199') in 0.134633 seconds - Import took 0.140061 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002980 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.492 seconds -Domain Reload Profiling: - ReloadAssembly (1493ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1251ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (359ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (55ms) - SetupLoadedEditorAssemblies (443ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (124ms) - ProcessInitializeOnLoadAttributes (292ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2614. -Total: 4.155700 ms (FindLiveObjects: 0.210000 ms CreateObjectMapping: 0.076700 ms MarkObjects: 3.827700 ms DeleteObjects: 0.040200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 21.074851 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f4ebf1b27f76a56adcaa1c980a3a8b1') in 0.081467 seconds - Import took 0.087537 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003442 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.541 seconds -Domain Reload Profiling: - ReloadAssembly (1542ms) - BeginReloadAssembly (129ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1329ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (409ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (407ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (264ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2616. -Total: 3.264300 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.091600 ms MarkObjects: 2.901200 ms DeleteObjects: 0.041000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 13.928724 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7996b19b942ef1dafda35a87c7b865f') in 0.075634 seconds - Import took 0.081210 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003828 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.617 seconds -Domain Reload Profiling: - ReloadAssembly (1618ms) - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1399ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (419ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (77ms) - SetupLoadedEditorAssemblies (421ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (279ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2618. -Total: 3.911900 ms (FindLiveObjects: 0.257300 ms CreateObjectMapping: 0.133100 ms MarkObjects: 3.480000 ms DeleteObjects: 0.040500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 15.680746 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52ae742aad7156c3ab1a1996b8e73427') in 0.077494 seconds - Import took 0.082667 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002979 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.459 seconds -Domain Reload Profiling: - ReloadAssembly (1460ms) - BeginReloadAssembly (150ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1231ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (355ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (55ms) - SetupLoadedEditorAssemblies (395ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (108ms) - ProcessInitializeOnLoadAttributes (260ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2620. -Total: 3.350800 ms (FindLiveObjects: 0.224500 ms CreateObjectMapping: 0.086300 ms MarkObjects: 3.010200 ms DeleteObjects: 0.028600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 64.763982 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd02bbe601434a0d37a0fef7383d58f97') in 0.053605 seconds - Import took 0.058322 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005810 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.464 seconds -Domain Reload Profiling: - ReloadAssembly (1465ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1235ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (349ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (378ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.91 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2622. -Total: 3.568000 ms (FindLiveObjects: 0.244800 ms CreateObjectMapping: 0.103600 ms MarkObjects: 3.168900 ms DeleteObjects: 0.048700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 22.043060 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd68c5b00907576ee8ab835067f0aadf3') in 0.068029 seconds - Import took 0.074218 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.596479 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4760e2f7bc7b16a1c897066a0df2afc6') in 0.013682 seconds - Import took 0.019152 seconds . - -======================================================================== -Received Import Request. - Time since last request: 21.510337 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89b864f8f781f56bc69e9b597453d9a2') in 0.011704 seconds - Import took 0.018462 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.438224 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc4fbceefd0f24f6f43c5beca169d278') in 0.019818 seconds - Import took 0.025733 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.904994 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bf0ef33c4a6a34cc3b29e678db2510f') in 0.010424 seconds - Import took 0.015693 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.625612 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '217995a536376940be75e2300ad32cfd') in 0.011382 seconds - Import took 0.017383 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003718 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.581 seconds -Domain Reload Profiling: - ReloadAssembly (1582ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (47ms) - EndReloadAssembly (1343ms) - LoadAssemblies (124ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (403ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (416ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (109ms) - ProcessInitializeOnLoadAttributes (282ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.4 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2624. -Total: 3.935600 ms (FindLiveObjects: 0.391800 ms CreateObjectMapping: 0.140200 ms MarkObjects: 3.374800 ms DeleteObjects: 0.027700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 45.995066 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6347b804b5c836520ebb65fa042b6c8') in 0.068320 seconds - Import took 0.073443 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.012678 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.052 seconds -Domain Reload Profiling: - ReloadAssembly (2053ms) - BeginReloadAssembly (180ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1754ms) - LoadAssemblies (138ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (583ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (83ms) - SetupLoadedEditorAssemblies (511ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (132ms) - ProcessInitializeOnLoadAttributes (345ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2626. -Total: 6.738100 ms (FindLiveObjects: 0.239700 ms CreateObjectMapping: 0.108400 ms MarkObjects: 6.348200 ms DeleteObjects: 0.040000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005582 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.595 seconds -Domain Reload Profiling: - ReloadAssembly (1595ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1371ms) - LoadAssemblies (127ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (446ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (67ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2628. -Total: 4.786600 ms (FindLiveObjects: 0.392000 ms CreateObjectMapping: 0.158300 ms MarkObjects: 4.211600 ms DeleteObjects: 0.023200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003923 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.543 seconds -Domain Reload Profiling: - ReloadAssembly (1543ms) - BeginReloadAssembly (143ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1310ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (449ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (67ms) - SetupLoadedEditorAssemblies (352ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (107ms) - ProcessInitializeOnLoadAttributes (218ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. -Total: 3.424700 ms (FindLiveObjects: 0.222100 ms CreateObjectMapping: 0.095900 ms MarkObjects: 3.085500 ms DeleteObjects: 0.020300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004080 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.531 seconds -Domain Reload Profiling: - ReloadAssembly (1532ms) - BeginReloadAssembly (141ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (45ms) - EndReloadAssembly (1314ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (410ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (65ms) - SetupLoadedEditorAssemblies (377ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (106ms) - ProcessInitializeOnLoadAttributes (246ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. -Total: 3.383100 ms (FindLiveObjects: 0.203200 ms CreateObjectMapping: 0.070300 ms MarkObjects: 3.070700 ms DeleteObjects: 0.038000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004175 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.632 seconds -Domain Reload Profiling: - ReloadAssembly (1632ms) - BeginReloadAssembly (152ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1393ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (426ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (406ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (113ms) - ProcessInitializeOnLoadAttributes (267ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. -Total: 3.894300 ms (FindLiveObjects: 0.197200 ms CreateObjectMapping: 0.072200 ms MarkObjects: 3.605500 ms DeleteObjects: 0.018400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005252 seconds. +Registered in 0.003824 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -2554,43 +568,43 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.481 seconds +- Completed reload, in 1.136 seconds Domain Reload Profiling: - ReloadAssembly (1482ms) - BeginReloadAssembly (139ms) + ReloadAssembly (1136ms) + BeginReloadAssembly (130ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (14ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1256ms) - LoadAssemblies (115ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (943ms) + LoadAssemblies (84ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (396ms) + SetupTypeCache (327ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (61ms) - SetupLoadedEditorAssemblies (358ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (316ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (110ms) - ProcessInitializeOnLoadAttributes (224ms) - ProcessInitializeOnLoadMethodAttributes (6ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) + 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.53 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2636. -Total: 3.603600 ms (FindLiveObjects: 0.189900 ms CreateObjectMapping: 0.065400 ms MarkObjects: 3.285900 ms DeleteObjects: 0.061600 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2590. +Total: 3.577000 ms (FindLiveObjects: 0.250700 ms CreateObjectMapping: 0.096000 ms MarkObjects: 3.204700 ms DeleteObjects: 0.024400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2606,296 +620,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004270 seconds. +Registered in 0.002635 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.428 seconds +- Completed reload, in 1.251 seconds Domain Reload Profiling: - ReloadAssembly (1428ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1252ms) + BeginReloadAssembly (144ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) + DisableScriptedObjects (9ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1211ms) - LoadAssemblies (126ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1043ms) + LoadAssemblies (112ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (368ms) + SetupTypeCache (266ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (57ms) - SetupLoadedEditorAssemblies (363ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (402ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (25ms) + InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (230ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (7ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (83ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. -Total: 3.747600 ms (FindLiveObjects: 0.340300 ms CreateObjectMapping: 0.131800 ms MarkObjects: 3.239100 ms DeleteObjects: 0.035400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004778 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.635 seconds -Domain Reload Profiling: - ReloadAssembly (1635ms) - BeginReloadAssembly (160ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - EndReloadAssembly (1365ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (387ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (411ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (112ms) - ProcessInitializeOnLoadAttributes (276ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. -Total: 3.903700 ms (FindLiveObjects: 0.238900 ms CreateObjectMapping: 0.101200 ms MarkObjects: 3.541400 ms DeleteObjects: 0.021000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003531 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.85 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.539 seconds -Domain Reload Profiling: - ReloadAssembly (1540ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1312ms) - LoadAssemblies (131ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (406ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (383ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. -Total: 3.389100 ms (FindLiveObjects: 0.222200 ms CreateObjectMapping: 0.081800 ms MarkObjects: 3.064800 ms DeleteObjects: 0.019000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004118 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.839 seconds -Domain Reload Profiling: - ReloadAssembly (1840ms) - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (52ms) - EndReloadAssembly (1577ms) - LoadAssemblies (156ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (449ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (494ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (194ms) - ProcessInitializeOnLoadAttributes (275ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - 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.56 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. -Total: 4.249000 ms (FindLiveObjects: 0.279200 ms CreateObjectMapping: 0.081100 ms MarkObjects: 3.863000 ms DeleteObjects: 0.024400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003441 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.663 seconds -Domain Reload Profiling: - ReloadAssembly (1664ms) - BeginReloadAssembly (159ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (49ms) - EndReloadAssembly (1411ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (359ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (73ms) - SetupLoadedEditorAssemblies (390ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (119ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) + AwakeInstancesAfterBackupRestoration (22ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. -Total: 4.018500 ms (FindLiveObjects: 0.381000 ms CreateObjectMapping: 0.124800 ms MarkObjects: 3.492100 ms DeleteObjects: 0.019400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2592. +Total: 5.093300 ms (FindLiveObjects: 0.360500 ms CreateObjectMapping: 0.149900 ms MarkObjects: 4.549000 ms DeleteObjects: 0.032200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2911,52 +681,235 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003476 seconds. +Registered in 0.002898 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.478 seconds +- Completed reload, in 1.163 seconds Domain Reload Profiling: - ReloadAssembly (1478ms) - BeginReloadAssembly (136ms) + ReloadAssembly (1164ms) + BeginReloadAssembly (163ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1260ms) - LoadAssemblies (110ms) + CreateAndSetChildDomain (80ms) + EndReloadAssembly (939ms) + LoadAssemblies (85ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (415ms) + SetupTypeCache (333ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (329ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (335ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (192ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2594. +Total: 2.858200 ms (FindLiveObjects: 0.191800 ms CreateObjectMapping: 0.072400 ms MarkObjects: 2.580200 ms DeleteObjects: 0.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005457 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.252 seconds +Domain Reload Profiling: + ReloadAssembly (1252ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1013ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (321ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (101ms) - ProcessInitializeOnLoadAttributes (207ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (248ms) ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2596. +Total: 3.132000 ms (FindLiveObjects: 0.208500 ms CreateObjectMapping: 0.096900 ms MarkObjects: 2.806200 ms DeleteObjects: 0.019400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005592 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.561 seconds +Domain Reload Profiling: + ReloadAssembly (1561ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1376ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (688ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (246ms) + ProcessInitializeOnLoadAttributes (415ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2598. +Total: 2.624900 ms (FindLiveObjects: 0.194700 ms CreateObjectMapping: 0.074900 ms MarkObjects: 2.338800 ms DeleteObjects: 0.015600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003444 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.649 seconds +Domain Reload Profiling: + ReloadAssembly (1650ms) + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1467ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (503ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (350ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (11ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. -Total: 3.721100 ms (FindLiveObjects: 0.236900 ms CreateObjectMapping: 0.132400 ms MarkObjects: 3.310700 ms DeleteObjects: 0.020100 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2600. +Total: 2.564700 ms (FindLiveObjects: 0.187600 ms CreateObjectMapping: 0.091600 ms MarkObjects: 2.268000 ms DeleteObjects: 0.016500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -2972,52 +925,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003060 seconds. +Registered in 0.007394 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.546 seconds +- Completed reload, in 1.963 seconds Domain Reload Profiling: - ReloadAssembly (1546ms) - BeginReloadAssembly (148ms) + ReloadAssembly (1963ms) + BeginReloadAssembly (247ms) ExecutionOrderSort (0ms) DisableScriptedObjects (11ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1318ms) - LoadAssemblies (121ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1602ms) + LoadAssemblies (220ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (366ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (428ms) + SetupTypeCache (573ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (174ms) + SetupLoadedEditorAssemblies (447ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) + InitializePlatformSupportModulesInManaged (14ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (129ms) - ProcessInitializeOnLoadAttributes (276ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (6ms) + BeforeProcessingInitializeOnLoad (200ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (12ms) + AwakeInstancesAfterBackupRestoration (51ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2650. -Total: 4.410400 ms (FindLiveObjects: 0.233100 ms CreateObjectMapping: 0.087400 ms MarkObjects: 4.063100 ms DeleteObjects: 0.025500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2602. +Total: 2.812400 ms (FindLiveObjects: 0.282900 ms CreateObjectMapping: 0.100200 ms MarkObjects: 2.410700 ms DeleteObjects: 0.017300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3033,37 +986,281 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004739 seconds. +Registered in 0.005899 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.503 seconds +- Completed reload, in 2.233 seconds Domain Reload Profiling: - ReloadAssembly (1503ms) - BeginReloadAssembly (137ms) + ReloadAssembly (2233ms) + BeginReloadAssembly (231ms) ExecutionOrderSort (0ms) DisableScriptedObjects (9ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1281ms) - LoadAssemblies (124ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1885ms) + LoadAssemblies (215ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (407ms) + SetupTypeCache (550ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (73ms) - SetupLoadedEditorAssemblies (324ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (233ms) + ProcessInitializeOnLoadAttributes (310ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. +Total: 5.709400 ms (FindLiveObjects: 0.543900 ms CreateObjectMapping: 0.683000 ms MarkObjects: 4.450800 ms DeleteObjects: 0.029400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003939 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.249 seconds +Domain Reload Profiling: + ReloadAssembly (1249ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1028ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (145ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2606. +Total: 3.778300 ms (FindLiveObjects: 0.404300 ms CreateObjectMapping: 0.187100 ms MarkObjects: 3.158400 ms DeleteObjects: 0.026600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003269 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.151 seconds +Domain Reload Profiling: + ReloadAssembly (1152ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (950ms) + LoadAssemblies (102ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (256ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (288ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (9ms) SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2608. +Total: 2.745400 ms (FindLiveObjects: 0.187800 ms CreateObjectMapping: 0.063700 ms MarkObjects: 2.479800 ms DeleteObjects: 0.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003332 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.214 seconds +Domain Reload Profiling: + ReloadAssembly (1214ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (998ms) + LoadAssemblies (85ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (93ms) - ProcessInitializeOnLoadAttributes (212ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (173ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2610. +Total: 2.837300 ms (FindLiveObjects: 0.179800 ms CreateObjectMapping: 0.074800 ms MarkObjects: 2.567700 ms DeleteObjects: 0.014300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003874 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.245 seconds +Domain Reload Profiling: + ReloadAssembly (1245ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1062ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (357ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (255ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) @@ -3071,14 +1268,108 @@ Domain Reload Profiling: AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.6 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. -Total: 2.998400 ms (FindLiveObjects: 0.225300 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.633700 ms DeleteObjects: 0.057900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2612. +Total: 2.805800 ms (FindLiveObjects: 0.190400 ms CreateObjectMapping: 0.071400 ms MarkObjects: 2.528200 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1250.809115 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: '004e96e2bdb7618f2b098acbefc417be') in 0.043373 seconds + Import took 0.050140 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.528318 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: '398ff43c0abffc1cd323ea2ca3523a13') in 0.009552 seconds + Import took 0.014366 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7.178899 seconds. + path: Assets/Scenes/Inventory.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '004957a9ee8472bf831656f35eac27c5') in 0.005259 seconds + Import took 0.009171 seconds . + +======================================================================== +Received Import Request. + Time since last request: 307.270715 seconds. + path: Assets/Scenes/SampleSceneSettings.lighting + artifactKey: Guid(727470f1003b0d84ea84cdd280a59b2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/SampleSceneSettings.lighting using Guid(727470f1003b0d84ea84cdd280a59b2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) LightingSettings: switching bake backend from 1 to 0. + -> (artifact id: 'bc9d234734922bfd1d625ba73852731a') in 0.123135 seconds + Import took 0.128400 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003630 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.008 seconds +Domain Reload Profiling: + ReloadAssembly (2013ms) + BeginReloadAssembly (336ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (31ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (200ms) + EndReloadAssembly (1591ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (416ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (685ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (558ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2614. +Total: 3.384400 ms (FindLiveObjects: 0.272100 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.987300 ms DeleteObjects: 0.021700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3094,7 +1385,259 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003509 seconds. +Registered in 0.002300 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.193 seconds +Domain Reload Profiling: + ReloadAssembly (1193ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1009ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + 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.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2616. +Total: 2.767600 ms (FindLiveObjects: 0.187800 ms CreateObjectMapping: 0.077200 ms MarkObjects: 2.486100 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.007818 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.426 seconds +Domain Reload Profiling: + ReloadAssembly (1427ms) + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1243ms) + LoadAssemblies (131ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (460ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (338ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2618. +Total: 13.475000 ms (FindLiveObjects: 2.004200 ms CreateObjectMapping: 0.413400 ms MarkObjects: 10.831300 ms DeleteObjects: 0.219400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004949 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.373 seconds +Domain Reload Profiling: + ReloadAssembly (1375ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (22ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (83ms) + EndReloadAssembly (1058ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (332ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (256ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2620. +Total: 5.511800 ms (FindLiveObjects: 0.420800 ms CreateObjectMapping: 0.196600 ms MarkObjects: 4.865800 ms DeleteObjects: 0.027000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 1505.897499 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: '5dee39e9d78d078a85ee95e37a68ddfd') in 0.033703 seconds + Import took 0.041300 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002402 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.679 seconds +Domain Reload Profiling: + ReloadAssembly (1680ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1399ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (482ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (113ms) + SetupLoadedEditorAssemblies (393ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2622. +Total: 2.693000 ms (FindLiveObjects: 0.194000 ms CreateObjectMapping: 0.079900 ms MarkObjects: 2.385400 ms DeleteObjects: 0.032900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004418 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -3103,226 +1646,43 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.578 seconds +- Completed reload, in 1.546 seconds Domain Reload Profiling: - ReloadAssembly (1578ms) - BeginReloadAssembly (145ms) + ReloadAssembly (1547ms) + BeginReloadAssembly (115ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (41ms) - EndReloadAssembly (1332ms) - LoadAssemblies (120ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1363ms) + LoadAssemblies (96ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (424ms) + SetupTypeCache (478ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (364ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (396ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (5ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (7ms) AfterProcessingInitializeOnLoad (6ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2654. -Total: 3.650300 ms (FindLiveObjects: 0.194400 ms CreateObjectMapping: 0.069000 ms MarkObjects: 3.328000 ms DeleteObjects: 0.058100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004703 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.744 seconds -Domain Reload Profiling: - ReloadAssembly (1745ms) - BeginReloadAssembly (150ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (12ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1468ms) - LoadAssemblies (125ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (445ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (396ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (105ms) - ProcessInitializeOnLoadAttributes (262ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2656. -Total: 4.317600 ms (FindLiveObjects: 0.235500 ms CreateObjectMapping: 0.094900 ms MarkObjects: 3.956000 ms DeleteObjects: 0.029600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003378 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.622 seconds -Domain Reload Profiling: - ReloadAssembly (1622ms) - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1382ms) - LoadAssemblies (143ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (432ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (370ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (111ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. -Total: 3.442400 ms (FindLiveObjects: 0.207000 ms CreateObjectMapping: 0.077000 ms MarkObjects: 3.138500 ms DeleteObjects: 0.019000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003364 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.659 seconds -Domain Reload Profiling: - ReloadAssembly (1660ms) - BeginReloadAssembly (144ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - EndReloadAssembly (1430ms) - LoadAssemblies (133ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (421ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (71ms) - SetupLoadedEditorAssemblies (403ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (256ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (14ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 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: 2660. -Total: 3.713500 ms (FindLiveObjects: 0.409100 ms CreateObjectMapping: 0.215200 ms MarkObjects: 3.064200 ms DeleteObjects: 0.023400 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2624. +Total: 3.228500 ms (FindLiveObjects: 0.235900 ms CreateObjectMapping: 0.090800 ms MarkObjects: 2.884400 ms DeleteObjects: 0.016400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3338,174 +1698,235 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004140 seconds. +Registered in 0.002350 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.564 seconds +- Completed reload, in 1.289 seconds Domain Reload Profiling: - ReloadAssembly (1564ms) - BeginReloadAssembly (186ms) + ReloadAssembly (1290ms) + BeginReloadAssembly (108ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (10ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (79ms) - EndReloadAssembly (1270ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1125ms) LoadAssemblies (127ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (379ms) + SetupTypeCache (288ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (60ms) - SetupLoadedEditorAssemblies (324ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (423ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) + InitializePlatformSupportModulesInManaged (52ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (207ms) + BeforeProcessingInitializeOnLoad (107ms) + ProcessInitializeOnLoadAttributes (251ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2626. +Total: 3.847800 ms (FindLiveObjects: 0.210200 ms CreateObjectMapping: 0.089400 ms MarkObjects: 3.522600 ms DeleteObjects: 0.024400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003087 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.540 seconds +Domain Reload Profiling: + ReloadAssembly (1541ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1369ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (474ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (101ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 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: 2628. +Total: 6.413700 ms (FindLiveObjects: 0.520000 ms CreateObjectMapping: 0.252100 ms MarkObjects: 5.615700 ms DeleteObjects: 0.023800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004895 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.118 seconds +Domain Reload Profiling: + ReloadAssembly (1119ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (898ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (260ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (271ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (170ms) ProcessInitializeOnLoadMethodAttributes (6ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. +Total: 2.714700 ms (FindLiveObjects: 0.184900 ms CreateObjectMapping: 0.073500 ms MarkObjects: 2.441700 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002619 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.108 seconds +Domain Reload Profiling: + ReloadAssembly (1108ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (934ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (271ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (10ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. -Total: 3.661900 ms (FindLiveObjects: 0.193400 ms CreateObjectMapping: 0.090900 ms MarkObjects: 3.317700 ms DeleteObjects: 0.059200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003983 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.919 seconds -Domain Reload Profiling: - ReloadAssembly (1920ms) - BeginReloadAssembly (158ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1671ms) - LoadAssemblies (142ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (621ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (400ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (137ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. -Total: 3.388500 ms (FindLiveObjects: 0.232500 ms CreateObjectMapping: 0.089500 ms MarkObjects: 3.046700 ms DeleteObjects: 0.018900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004113 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.807 seconds -Domain Reload Profiling: - ReloadAssembly (1808ms) - BeginReloadAssembly (157ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1568ms) - LoadAssemblies (137ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (460ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (424ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (274ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. -Total: 4.751100 ms (FindLiveObjects: 0.205000 ms CreateObjectMapping: 0.071400 ms MarkObjects: 4.426200 ms DeleteObjects: 0.047500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. +Total: 2.638200 ms (FindLiveObjects: 0.185000 ms CreateObjectMapping: 0.094300 ms MarkObjects: 2.344400 ms DeleteObjects: 0.013900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3527,290 +1948,131 @@ Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.219 seconds -Domain Reload Profiling: - ReloadAssembly (2220ms) - BeginReloadAssembly (169ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (43ms) - EndReloadAssembly (1877ms) - LoadAssemblies (153ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (532ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (480ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (128ms) - ProcessInitializeOnLoadAttributes (321ms) - ProcessInitializeOnLoadMethodAttributes (8ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (20ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. -Total: 5.515700 ms (FindLiveObjects: 0.253900 ms CreateObjectMapping: 0.135400 ms MarkObjects: 5.091900 ms DeleteObjects: 0.032400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002993 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.584 seconds -Domain Reload Profiling: - ReloadAssembly (1585ms) - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - EndReloadAssembly (1353ms) - LoadAssemblies (116ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (372ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (60ms) - SetupLoadedEditorAssemblies (381ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (102ms) - ProcessInitializeOnLoadAttributes (256ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (13ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. -Total: 3.044000 ms (FindLiveObjects: 0.307900 ms CreateObjectMapping: 0.106200 ms MarkObjects: 2.571000 ms DeleteObjects: 0.058000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004633 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.540 seconds -Domain Reload Profiling: - ReloadAssembly (1540ms) - BeginReloadAssembly (139ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - EndReloadAssembly (1323ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (360ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (356ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (218ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. -Total: 3.643700 ms (FindLiveObjects: 0.231600 ms CreateObjectMapping: 0.064800 ms MarkObjects: 3.307600 ms DeleteObjects: 0.038600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003551 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.574 seconds -Domain Reload Profiling: - ReloadAssembly (1574ms) - BeginReloadAssembly (145ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (48ms) - EndReloadAssembly (1344ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (407ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (61ms) - SetupLoadedEditorAssemblies (345ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (201ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (7ms) - 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.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. -Total: 4.958500 ms (FindLiveObjects: 0.341200 ms CreateObjectMapping: 0.197200 ms MarkObjects: 4.391200 ms DeleteObjects: 0.027400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003245 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.244 seconds +- Completed reload, in 1.362 seconds Domain Reload Profiling: - ReloadAssembly (1244ms) - BeginReloadAssembly (111ms) + ReloadAssembly (1363ms) + BeginReloadAssembly (135ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1074ms) - LoadAssemblies (96ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1149ms) + LoadAssemblies (111ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (281ms) + SetupTypeCache (333ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (301ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (342ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (98ms) - ProcessInitializeOnLoadAttributes (184ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (97ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) 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.73 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. -Total: 3.945800 ms (FindLiveObjects: 0.306800 ms CreateObjectMapping: 0.182100 ms MarkObjects: 3.433500 ms DeleteObjects: 0.022500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. +Total: 4.898700 ms (FindLiveObjects: 0.211600 ms CreateObjectMapping: 0.094700 ms MarkObjects: 4.546600 ms DeleteObjects: 0.043100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 3227.346147 seconds. + path: Assets/Prefabs/Player/Player.prefab + artifactKey: Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Player/Player.prefab using Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a5fa5866cc59ff83fc483998fd864ae') in 0.147993 seconds + Import took 0.154491 seconds . + +======================================================================== +Received Import Request. + Time since last request: 10.359928 seconds. + path: Assets/Scripts/Configs/BattleConfigs + artifactKey: Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs using Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '726eb51640982ba4c4a263e72a33d88d') in 0.011501 seconds + Import took 0.015220 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.360168 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset + artifactKey: Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset using Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63d441a5b458054c4d08ff658c80c31e') in 0.040982 seconds + Import took 0.045604 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002409 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.177 seconds +Domain Reload Profiling: + ReloadAssembly (1178ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1002ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (276ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (202ms) + 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.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2636. +Total: 2.930500 ms (FindLiveObjects: 0.268100 ms CreateObjectMapping: 0.098200 ms MarkObjects: 2.542900 ms DeleteObjects: 0.020400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3826,7 +2088,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002887 seconds. +Registered in 0.002340 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -3835,43 +2097,43 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.326 seconds +- Completed reload, in 1.314 seconds Domain Reload Profiling: - ReloadAssembly (1326ms) - BeginReloadAssembly (122ms) + ReloadAssembly (1315ms) + BeginReloadAssembly (118ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (1144ms) - LoadAssemblies (96ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1128ms) + LoadAssemblies (87ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (278ms) + SetupTypeCache (335ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (304ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (344ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (95ms) - ProcessInitializeOnLoadAttributes (191ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (231ms) ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (5ms) + AfterProcessingInitializeOnLoad (6ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (12ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. -Total: 2.857700 ms (FindLiveObjects: 0.186800 ms CreateObjectMapping: 0.065900 ms MarkObjects: 2.590700 ms DeleteObjects: 0.013500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2638. +Total: 2.935700 ms (FindLiveObjects: 0.194700 ms CreateObjectMapping: 0.080500 ms MarkObjects: 2.636800 ms DeleteObjects: 0.022200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3887,7 +2149,875 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.004241 seconds. +Registered in 0.003728 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.150 seconds +Domain Reload Profiling: + ReloadAssembly (1151ms) + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (975ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (204ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2640. +Total: 2.559400 ms (FindLiveObjects: 0.187900 ms CreateObjectMapping: 0.079800 ms MarkObjects: 2.276900 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003700 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.674 seconds +Domain Reload Profiling: + ReloadAssembly (1675ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1416ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (437ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2642. +Total: 3.063100 ms (FindLiveObjects: 0.198000 ms CreateObjectMapping: 0.080800 ms MarkObjects: 2.767200 ms DeleteObjects: 0.016100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 443.651106 seconds. + path: Assets/Scripts + artifactKey: Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts using Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '452aa6f74274641c3e32d623190861bc') in 0.014800 seconds + Import took 0.019421 seconds . + +======================================================================== +Received Import Request. + Time since last request: 15.518203 seconds. + path: Assets/Scripts/Equipment + artifactKey: Guid(2d7109c8321aa97469d6c3bea0878c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Equipment using Guid(2d7109c8321aa97469d6c3bea0878c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d5b213c11968f62b17a56b01ac859bc') in 0.009022 seconds + Import took 0.014612 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.710387 seconds. + path: Assets/Scripts/MainMenuScripts + artifactKey: Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts using Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63ce1bba038ff281ddac8ee165824d48') in 0.010534 seconds + Import took 0.016037 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.750615 seconds. + path: Assets/Scripts/MainMenuScripts/MainMenuScript.cs + artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e3e9f80408573747b73586ce0c3d2aa') in 0.023894 seconds + Import took 0.029501 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7.614285 seconds. + path: Assets/Scripts/MainMenuScripts/Inventory.cs + artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts/Inventory.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7c75da183f92ccbd6795497b53daef0') in 0.009963 seconds + Import took 0.014863 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.578812 seconds. + path: Assets/Scripts/MainMenuScripts/AddEquipment.cs + artifactKey: Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts/AddEquipment.cs using Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff60467b58ba0e13cc2db24f166982e3') in 0.008166 seconds + Import took 0.012515 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.289147 seconds. + path: Assets/Scripts/MainMenuScripts/EquipmentButton.cs + artifactKey: Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts/EquipmentButton.cs using Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1268362d3682bbd9c4f9ade0f73a667e') in 0.005783 seconds + Import took 0.009905 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.288377 seconds. + path: Assets/Scripts/MainMenuScripts/EquipmentInfo.cs + artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/MainMenuScripts/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8c523aeb75301d703f634c1636361f0') in 0.005333 seconds + Import took 0.008541 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003217 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.096 seconds +Domain Reload Profiling: + ReloadAssembly (1097ms) + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + EndReloadAssembly (906ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (262ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2644. +Total: 2.623300 ms (FindLiveObjects: 0.189700 ms CreateObjectMapping: 0.078400 ms MarkObjects: 2.340100 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: 135.144337 seconds. + path: Assets/Scripts/CanvasChanger.cs + artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '344720f1a7142090755e8d664ca65c27') in 0.008075 seconds + Import took 0.011958 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.501609 seconds. + path: Assets/Scripts/Not used + artifactKey: Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Not used using Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a4259d2bc94fb340579e09c83e4d82a') in 0.006519 seconds + Import took 0.009587 seconds . + +======================================================================== +Received Import Request. + Time since last request: 11.530902 seconds. + path: Assets/Scripts/Inventory + artifactKey: Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory using Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c3a4822e3b2b1098c68b59c5e98810f') in 0.002403 seconds + Import took 0.006129 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002946 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.114 seconds +Domain Reload Profiling: + ReloadAssembly (1115ms) + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (931ms) + LoadAssemblies (92ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (265ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2646. +Total: 2.784300 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.081800 ms MarkObjects: 2.426900 ms DeleteObjects: 0.014900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4.405795 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: 'fdd76b686d374fcbe40eef62a167e717') in 0.003995 seconds + Import took 0.006783 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.041480 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: '48bddb2b4c446e0c18909b185e8a8979') in 0.001884 seconds + Import took 0.004793 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.669654 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: '24e3769e461258d64197cd97ded4c357') in 0.001960 seconds + Import took 0.005281 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.968376 seconds. + path: Assets/Scripts/Inventory/SpawnButton.cs + artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Inventory/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c88530912e402be914606a36261267d5') in 0.013191 seconds + Import took 0.020836 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.019169 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: '30411419099c62bc7173768edd08ba52') in 0.005465 seconds + Import took 0.008796 seconds . + +======================================================================== +Received Import Request. + Time since last request: 297.566580 seconds. + path: Assets/Scripts/Configs/CardConfigs/AddStamina.asset + artifactKey: Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fecaf6d2b43b4876966ccce8d929ecb2') in 0.023658 seconds + Import took 0.027185 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004866 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.784 seconds +Domain Reload Profiling: + ReloadAssembly (1784ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1517ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (440ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (448ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (294ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2648. +Total: 5.176400 ms (FindLiveObjects: 0.444000 ms CreateObjectMapping: 0.361400 ms MarkObjects: 4.347800 ms DeleteObjects: 0.021900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002333 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.295 seconds +Domain Reload Profiling: + ReloadAssembly (1296ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1134ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (325ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (224ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2650. +Total: 3.018600 ms (FindLiveObjects: 0.251200 ms CreateObjectMapping: 0.092500 ms MarkObjects: 2.656600 ms DeleteObjects: 0.017300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002443 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.546 seconds +Domain Reload Profiling: + ReloadAssembly (1546ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1302ms) + LoadAssemblies (122ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (411ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (389ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2652. +Total: 6.049400 ms (FindLiveObjects: 0.290300 ms CreateObjectMapping: 0.120900 ms MarkObjects: 5.616900 ms DeleteObjects: 0.019900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002324 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.658 seconds +Domain Reload Profiling: + ReloadAssembly (1659ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1439ms) + LoadAssemblies (124ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (400ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (85ms) + SetupLoadedEditorAssemblies (417ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2654. +Total: 5.173200 ms (FindLiveObjects: 0.293100 ms CreateObjectMapping: 0.155600 ms MarkObjects: 4.702200 ms DeleteObjects: 0.021000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004117 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.763 seconds +Domain Reload Profiling: + ReloadAssembly (1763ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1517ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (423ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (441ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (280ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2656. +Total: 4.311600 ms (FindLiveObjects: 0.381500 ms CreateObjectMapping: 0.149400 ms MarkObjects: 3.758900 ms DeleteObjects: 0.020500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002197 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.209 seconds +Domain Reload Profiling: + ReloadAssembly (1210ms) + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (1048ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (311ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (12ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (189ms) + 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.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2658. +Total: 2.774700 ms (FindLiveObjects: 0.221100 ms CreateObjectMapping: 0.080900 ms MarkObjects: 2.455300 ms DeleteObjects: 0.016200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002358 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.095 seconds +Domain Reload Profiling: + ReloadAssembly (1095ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (938ms) + LoadAssemblies (77ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (249ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (281ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2660. +Total: 2.576100 ms (FindLiveObjects: 0.183100 ms CreateObjectMapping: 0.070400 ms MarkObjects: 2.308100 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.003580 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.117 seconds +Domain Reload Profiling: + ReloadAssembly (1118ms) + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (952ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (247ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (179ms) + 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.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2662. +Total: 2.598500 ms (FindLiveObjects: 0.186800 ms CreateObjectMapping: 0.080400 ms MarkObjects: 2.316100 ms DeleteObjects: 0.014100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003096 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -3896,43 +3026,43 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.265 seconds +- Completed reload, in 1.292 seconds Domain Reload Profiling: - ReloadAssembly (1266ms) - BeginReloadAssembly (103ms) + ReloadAssembly (1292ms) + BeginReloadAssembly (119ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (1100ms) - LoadAssemblies (85ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1101ms) + LoadAssemblies (95ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (306ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (275ms) + SetupTypeCache (284ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (324ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) + InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (175ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (7ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + 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 1.03 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. -Total: 7.919700 ms (FindLiveObjects: 0.311100 ms CreateObjectMapping: 0.178500 ms MarkObjects: 7.399500 ms DeleteObjects: 0.028800 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2664. +Total: 2.830700 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.083300 ms MarkObjects: 2.528300 ms DeleteObjects: 0.018200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -3946,78 +3076,99 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 1451.669217 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd7cfb8e69e29b894fec98ba33d3aab9') in 0.058521 seconds - Import took 0.062701 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.304070 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21ea1eef559861a987b760580745e897') in 0.009991 seconds - Import took 0.015186 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.007535 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da732e141ac59a195106672a35b642b7') in 0.009909 seconds - Import took 0.015287 seconds . - -======================================================================== -Received Import Request. - Time since last request: 38.480322 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9f5df37edae5097f7205460e21882f7') in 0.007991 seconds - Import took 0.011438 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.628929 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2654f0ae4fe8649b37a2405c62d0c37') in 0.008218 seconds - Import took 0.011812 seconds . - -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.005179 seconds. +Registered in 0.005147 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.177 seconds +- Completed reload, in 1.722 seconds Domain Reload Profiling: - ReloadAssembly (1177ms) - BeginReloadAssembly (96ms) + ReloadAssembly (1722ms) + BeginReloadAssembly (182ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1442ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (399ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (413ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2666. +Total: 2.649000 ms (FindLiveObjects: 0.201200 ms CreateObjectMapping: 0.077100 ms MarkObjects: 2.355300 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.002376 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.300 seconds +Domain Reload Profiling: + ReloadAssembly (1300ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (29ms) - EndReloadAssembly (1028ms) - LoadAssemblies (75ms) + EndReloadAssembly (1047ms) + LoadAssemblies (126ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (269ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (269ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (281ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (76ms) + BeforeProcessingInitializeOnLoad (85ms) ProcessInitializeOnLoadAttributes (176ms) ProcessInitializeOnLoadMethodAttributes (5ms) AfterProcessingInitializeOnLoad (5ms) @@ -4028,89 +3179,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2682. -Total: 3.127400 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.072200 ms MarkObjects: 2.820000 ms DeleteObjects: 0.017900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 4.760884 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebad747e16d7b1c3501803045207d53d') in 0.043513 seconds - Import took 0.046768 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.783535 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '988c265eb6bc8cf6bb89c508d740a070') in 0.008171 seconds - Import took 0.012410 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002661 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.183 seconds -Domain Reload Profiling: - ReloadAssembly (1184ms) - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (1006ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (248ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (280ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (89ms) - ProcessInitializeOnLoadAttributes (170ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (11ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.6 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2684. -Total: 3.562900 ms (FindLiveObjects: 0.211400 ms CreateObjectMapping: 0.067000 ms MarkObjects: 3.236400 ms DeleteObjects: 0.046700 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2668. +Total: 2.853200 ms (FindLiveObjects: 0.190400 ms CreateObjectMapping: 0.070600 ms MarkObjects: 2.573900 ms DeleteObjects: 0.017500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4126,52 +3200,52 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003900 seconds. +Registered in 0.003733 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.428 seconds +- Completed reload, in 1.797 seconds Domain Reload Profiling: - ReloadAssembly (1429ms) - BeginReloadAssembly (141ms) + ReloadAssembly (1799ms) + BeginReloadAssembly (219ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (11ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (40ms) - EndReloadAssembly (1208ms) - LoadAssemblies (126ms) + CreateAndSetChildDomain (84ms) + EndReloadAssembly (1472ms) + LoadAssemblies (158ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (288ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (389ms) + SetupTypeCache (458ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (410ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (8ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (145ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (9ms) Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.88 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.6 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2686. -Total: 3.545000 ms (FindLiveObjects: 0.240000 ms CreateObjectMapping: 0.082800 ms MarkObjects: 3.201100 ms DeleteObjects: 0.019500 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2670. +Total: 3.035400 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.111600 ms MarkObjects: 2.691000 ms DeleteObjects: 0.016900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4187,7 +3261,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003557 seconds. +Registered in 0.003175 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -4196,150 +3270,28 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.321 seconds +- Completed reload, in 1.204 seconds Domain Reload Profiling: - ReloadAssembly (1321ms) - BeginReloadAssembly (107ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (1160ms) - LoadAssemblies (95ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (289ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (338ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (79ms) - ProcessInitializeOnLoadAttributes (244ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2688. -Total: 2.815700 ms (FindLiveObjects: 0.196800 ms CreateObjectMapping: 0.079200 ms MarkObjects: 2.525600 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002466 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.230 seconds -Domain Reload Profiling: - ReloadAssembly (1230ms) - BeginReloadAssembly (119ms) + ReloadAssembly (1204ms) + BeginReloadAssembly (110ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - EndReloadAssembly (1043ms) - LoadAssemblies (88ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1030ms) + LoadAssemblies (85ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (264ms) + SetupTypeCache (313ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (259ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (272ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) + InitializePlatformSupportModulesInManaged (18ms) SetLoadedEditorAssemblies (0ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (76ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2690. -Total: 3.067000 ms (FindLiveObjects: 0.182700 ms CreateObjectMapping: 0.076300 ms MarkObjects: 2.791800 ms DeleteObjects: 0.015300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002206 seconds. -Begin MonoManager ReloadAssembly -Native extension for LinuxStandalone target not found -Native extension for WindowsStandalone target not found -Native extension for OSXStandalone target not found -Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.78 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.316 seconds -Domain Reload Profiling: - ReloadAssembly (1316ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - EndReloadAssembly (1158ms) - LoadAssemblies (92ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (265ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (300ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (99ms) - ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadAttributes (168ms) ProcessInitializeOnLoadMethodAttributes (4ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) @@ -4347,14 +3299,258 @@ Domain Reload Profiling: 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.68 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2692. -Total: 3.753500 ms (FindLiveObjects: 0.295500 ms CreateObjectMapping: 0.122000 ms MarkObjects: 3.315700 ms DeleteObjects: 0.018800 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2672. +Total: 2.985300 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.073900 ms MarkObjects: 2.680000 ms DeleteObjects: 0.015600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005345 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 2.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.212 seconds +Domain Reload Profiling: + ReloadAssembly (2213ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (1ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1946ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (495ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (87ms) + SetupLoadedEditorAssemblies (517ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (139ms) + ProcessInitializeOnLoadAttributes (342ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.8 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2674. +Total: 6.754400 ms (FindLiveObjects: 0.502500 ms CreateObjectMapping: 0.178100 ms MarkObjects: 6.038000 ms DeleteObjects: 0.032700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002317 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.354 seconds +Domain Reload Profiling: + ReloadAssembly (1354ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1175ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (299ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (234ms) + 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.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2676. +Total: 5.337400 ms (FindLiveObjects: 0.220900 ms CreateObjectMapping: 0.090400 ms MarkObjects: 4.998800 ms DeleteObjects: 0.026100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002361 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.358 seconds +Domain Reload Profiling: + ReloadAssembly (1358ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1182ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (292ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (102ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (196ms) + 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 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.7 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2678. +Total: 3.586900 ms (FindLiveObjects: 0.335700 ms CreateObjectMapping: 0.110800 ms MarkObjects: 3.116600 ms DeleteObjects: 0.022600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004271 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.063 seconds +Domain Reload Profiling: + ReloadAssembly (2064ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1739ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (453ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (609ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (135ms) + ProcessInitializeOnLoadAttributes (449ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2680. +Total: 2.728000 ms (FindLiveObjects: 0.197500 ms CreateObjectMapping: 0.108700 ms MarkObjects: 2.404400 ms DeleteObjects: 0.016200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4369,64 +3565,991 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 135.655730 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a01c9e50b8bdcdaecd28635c9e8fe511') in 0.048391 seconds - Import took 0.052584 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.599146 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd43c694229c22675c50993de274f1c8') in 0.008276 seconds - Import took 0.012416 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.175957 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '697fe7d12adf448a6708430e6bf1cd06') in 0.007912 seconds - Import took 0.012380 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.360758 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5521aaa517938fe2e2cdf8100537b63c') in 0.009520 seconds - Import took 0.013315 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.720768 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4798a3c419a82805f813381480ca4ac') in 0.008248 seconds - Import took 0.011907 seconds . - -======================================================================== -Received Import Request. - Time since last request: 11.801880 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a39b513ebabeaa644cd458db62cc384') in 0.008603 seconds - Import took 0.012737 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.280656 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset - artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91f080f196bff9f72f7bb3457486ed26') in 0.003565 seconds - Import took 0.008079 seconds . + Time since last request: 1581.188443 seconds. + path: Assets/Scripts/Configs/CardConfigs + artifactKey: Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs using Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d9650170d8ae61c72f00e7938872158') in 0.011661 seconds + Import took 0.015479 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002638 seconds. +Registered in 0.002620 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.378 seconds +Domain Reload Profiling: + ReloadAssembly (1378ms) + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1223ms) + LoadAssemblies (71ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (322ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (295ms) + 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.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.8 MB. +System memory in use after: 94.9 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2682. +Total: 2.833400 ms (FindLiveObjects: 0.236900 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.494500 ms DeleteObjects: 0.015000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 17.835976 seconds. + path: Assets/Scripts/Configs/CardConfigs/CardConfig.asset + artifactKey: Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/CardConfig.asset using Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd149be5a77a06250160ed676874f971') in 0.024960 seconds + Import took 0.028442 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.033283 seconds. + path: Assets/Graphics/Enemies/AttackIcons/230218.png + artifactKey: Guid(993fdba9d116dba4bacdee2d29d33f04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Enemies/AttackIcons/230218.png using Guid(993fdba9d116dba4bacdee2d29d33f04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cadeeab5be96f7eaaf5421a85e0df103') in 0.155605 seconds + Import took 0.159376 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000173 seconds. + path: Assets/Graphics/CardIcons/Energy.png + artifactKey: Guid(11194064875365e48be6ed64b065cb41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/CardIcons/Energy.png using Guid(11194064875365e48be6ed64b065cb41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4254b532de165b47617b2df6e45e980') in 0.036877 seconds + Import took 0.040833 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000365 seconds. + path: Assets/Graphics/Other/output-onlinepngtools (4).png + artifactKey: Guid(baeea79bd8960b44c8a956ac6aef5e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/output-onlinepngtools (4).png using Guid(baeea79bd8960b44c8a956ac6aef5e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ded8c151e52867a41fd84fa06fa9f7e3') in 0.055699 seconds + Import took 0.061896 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000391 seconds. + path: Assets/Graphics/CardIcons/Pistol.png + artifactKey: Guid(49fd699074bfe8742b2664b5fd5b5396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/CardIcons/Pistol.png using Guid(49fd699074bfe8742b2664b5fd5b5396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ea057781bf127df9b952c02fc64d043') in 0.034036 seconds + Import took 0.041067 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000220 seconds. + path: Assets/Graphics/Other/kisspng-vitruvian-man-the-creation-of-adam-vitruvian-man-5b215cc48629f7.3915026015289130925496.png + artifactKey: Guid(cbff014c4cf09684c84284e36be315ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/kisspng-vitruvian-man-the-creation-of-adam-vitruvian-man-5b215cc48629f7.3915026015289130925496.png using Guid(cbff014c4cf09684c84284e36be315ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e27470a0f41e083c079444069d6f4883') in 0.037018 seconds + Import took 0.043045 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000228 seconds. + path: Assets/Graphics/Player/ArmorShieldUI.png + artifactKey: Guid(7ab8624721af8974b9d81950d6603da1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Player/ArmorShieldUI.png using Guid(7ab8624721af8974b9d81950d6603da1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '949bbdeab8cb264892b763587278ff91') in 0.026891 seconds + Import took 0.030751 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000185 seconds. + path: Assets/Graphics/Other/Frame1.png + artifactKey: Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/Frame1.png using Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '333e90ce7b90cecfc5ebd94b8b650c9d') in 0.058485 seconds + Import took 0.062795 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000176 seconds. + path: Assets/Graphics/Equipment/breastplate.png + artifactKey: Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Equipment/breastplate.png using Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd59cbf5c01750df120e8a59b6239398b') in 0.038185 seconds + Import took 0.042336 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000244 seconds. + path: Assets/Graphics/CardIcons/Health.png + artifactKey: Guid(8e806042cc9fab349a847987c076f85d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/CardIcons/Health.png using Guid(8e806042cc9fab349a847987c076f85d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5953e81b1e1ed86b00a894dc68ef3af') in 0.074505 seconds + Import took 0.081173 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000217 seconds. + path: Assets/Graphics/Equipment/Helmet.png + artifactKey: Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Equipment/Helmet.png using Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f86c73593e6ffef948dcff7fcfdbe92') in 0.035504 seconds + Import took 0.048756 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.009314 seconds. + path: Assets/Graphics/Other/Frame.png + artifactKey: Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/Frame.png using Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de2a76b9d06c148e653ac9ec08db015b') in 0.045651 seconds + Import took 0.052180 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000206 seconds. + path: Assets/Graphics/Enemies/AttackIcons/output-onlinepngtools (11).png + artifactKey: Guid(9c3fd8d256ec8eb4181e171ceea55452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Enemies/AttackIcons/output-onlinepngtools (11).png using Guid(9c3fd8d256ec8eb4181e171ceea55452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb5f37807a1e84b8766bc327185580ba') in 0.023076 seconds + Import took 0.027405 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000236 seconds. + path: Assets/Graphics/Other/BackGround.jpg + artifactKey: Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/BackGround.jpg using Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0a70aea2d54fcb35809b603a0024c34') in 0.038225 seconds + Import took 0.045407 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000277 seconds. + path: Assets/Graphics/Other/Markers.png + artifactKey: Guid(5f2cb20f1f8274c42a5d23c6d6237680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Other/Markers.png using Guid(5f2cb20f1f8274c42a5d23c6d6237680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce121f47e2d63d2d6443ab9cdfeb8593') in 0.035144 seconds + Import took 0.041796 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000211 seconds. + path: Assets/Graphics/Player/Player.png + artifactKey: Guid(1e18a24cab2bb1b4e8c362f1968067b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Player/Player.png using Guid(1e18a24cab2bb1b4e8c362f1968067b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bcf7365d64858da2a1fa2bfae7485117') in 0.030475 seconds + Import took 0.035542 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000276 seconds. + path: Assets/Graphics/Enemies/Shaman.png + artifactKey: Guid(ec4a4ccf9452e07458fc2bbbe68f380a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Enemies/Shaman.png using Guid(ec4a4ccf9452e07458fc2bbbe68f380a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58b6e52c45731d1be1ff3142cb678ab4') in 0.041717 seconds + Import took 0.046499 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.519408 seconds. + path: Assets/Graphics/Enemies/Snake.png + artifactKey: Guid(3cd50817f068be2499e7e3509dc6c1e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Enemies/Snake.png using Guid(3cd50817f068be2499e7e3509dc6c1e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '669c9fec5449ffde30d25cb7a4815a70') in 0.018434 seconds + Import took 0.021846 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000200 seconds. + path: Assets/Graphics/CardIcons/Sword.png + artifactKey: Guid(81903c5799d202f458fd2fa30bb13cd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/CardIcons/Sword.png using Guid(81903c5799d202f458fd2fa30bb13cd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '810313999c99fab004da07b8d895a4cc') in 0.019313 seconds + Import took 0.023071 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.088037 seconds. + path: Assets/Graphics/Enemies/Zombie.png + artifactKey: Guid(aab1740fef9fe4145aef437cf6873127) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Enemies/Zombie.png using Guid(aab1740fef9fe4145aef437cf6873127) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '540d2ae16ba3dc100a23fe1a302ad0f8') in 0.034509 seconds + Import took 0.045872 seconds . + +======================================================================== +Received Import Request. + Time since last request: 28.469182 seconds. + path: Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset + artifactKey: Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/UltraMegaAttack.asset using Guid(e8ca549d99fe5cf4397542620ed834cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b504613e90a76ff469629cd766287e2') in 0.008154 seconds + Import took 0.012999 seconds . + +======================================================================== +Received Import Request. + Time since last request: 15.442741 seconds. + path: Assets/Scripts/Configs/CardConfigs/BigHealing.asset + artifactKey: Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/BigHealing.asset using Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab8885e0878ed329b87a00be45c899ba') in 0.007548 seconds + Import took 0.010845 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000195 seconds. + path: Assets/Scripts/Configs/CardConfigs/SmallHealing.asset + artifactKey: Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/SmallHealing.asset using Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9a6443f6876ab8a8e43b8c195d9f3df') in 0.007017 seconds + Import took 0.011509 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000369 seconds. + path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset + artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b00c0dab157ee388378b9d04a9408728') in 0.011658 seconds + Import took 0.015966 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000210 seconds. + path: Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset + artifactKey: Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset using Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b75b758917444c6801616f39c2db9424') in 0.011019 seconds + Import took 0.017864 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000240 seconds. + path: Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset + artifactKey: Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset using Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c57c5f75cc27167d776981d99617a05') in 0.010629 seconds + Import took 0.016267 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000344 seconds. + path: Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset + artifactKey: Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67e1e8060f84a2db2570ed60ec1490e7') in 0.009362 seconds + Import took 0.015835 seconds . + +======================================================================== +Received Import Request. + Time since last request: 14.126754 seconds. + path: Assets/Prefabs/Cards + artifactKey: Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards using Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '954b9adfa4c975d84af16527407bb810') in 0.006991 seconds + Import took 0.010305 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.379177 seconds. + path: Assets/Prefabs/Cards/UltraMegaAttack.prefab + artifactKey: Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/UltraMegaAttack.prefab using Guid(36c35c372a23bc349b3f2613d898cdda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ab19e1df91ef4454d7dbfb14b332225') in 0.031573 seconds + Import took 0.036346 seconds . + +======================================================================== +Received Import Request. + Time since last request: 22.832863 seconds. + path: Assets/Prefabs/Cards/LongBigDamagePrefab.prefab + artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/LongBigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1d4b3c9412ceb0b9e8637fa92b17400') in 0.010677 seconds + Import took 0.014099 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000199 seconds. + path: Assets/Prefabs/Enemy/Snake.prefab + artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '928eef6716113c85b5490a134ebf5daf') in 0.017227 seconds + Import took 0.021767 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000297 seconds. + path: Assets/Prefabs/Cards/SmallHealing.prefab + artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3ed34858da52c9f85551a972b4c78b17') in 0.007584 seconds + Import took 0.012151 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000209 seconds. + path: Assets/Prefabs/Cards/SmallArmor.prefab + artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ab921ce428beee29acc129f7f112a03') in 0.008287 seconds + Import took 0.012998 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000204 seconds. + path: Assets/Prefabs/Equipment/Standart/StandartEquipment.prefab + artifactKey: Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Equipment/Standart/StandartEquipment.prefab using Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd7feb0ce2e2241d3f6b91d0fa1fe93f') in 0.012524 seconds + Import took 0.019141 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000193 seconds. + path: Assets/Prefabs/Enemy/Zombie.prefab + artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9cd96a23ce3014155ca13bee1bc7838') in 0.011666 seconds + Import took 0.016571 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000234 seconds. + path: Assets/Prefabs/Enemy/Shaman.prefab + artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '100486397d5cd8ad079d0946dba439c5') in 0.051215 seconds + Import took 0.060089 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000074 seconds. + path: Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab + artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd7e9f9e0f6cfe41cb6c8dab41d7801a2') in 0.015675 seconds + Import took 0.024002 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000192 seconds. + path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab + artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d62b028cca59e9ceb4f27d6473bf15f') in 0.015193 seconds + Import took 0.021024 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006642 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.511 seconds +Domain Reload Profiling: + ReloadAssembly (2511ms) + BeginReloadAssembly (209ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (2113ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (551ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (598ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (420ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2713. +Total: 6.734600 ms (FindLiveObjects: 0.628700 ms CreateObjectMapping: 1.139700 ms MarkObjects: 4.936800 ms DeleteObjects: 0.028000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003234 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.923 seconds +Domain Reload Profiling: + ReloadAssembly (1924ms) + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1665ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (561ms) + ReleaseScriptCaches (6ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (361ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (253ms) + 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.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2715. +Total: 3.643100 ms (FindLiveObjects: 0.281500 ms CreateObjectMapping: 0.103700 ms MarkObjects: 3.234400 ms DeleteObjects: 0.022200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006491 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.409 seconds +Domain Reload Profiling: + ReloadAssembly (2409ms) + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (73ms) + EndReloadAssembly (2119ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (634ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (556ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (194ms) + ProcessInitializeOnLoadAttributes (332ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2717. +Total: 2.926500 ms (FindLiveObjects: 0.290200 ms CreateObjectMapping: 0.104000 ms MarkObjects: 2.514200 ms DeleteObjects: 0.016800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002523 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.292 seconds +Domain Reload Profiling: + ReloadAssembly (1293ms) + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1083ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (254ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (203ms) + 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.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.0 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2719. +Total: 3.650800 ms (FindLiveObjects: 0.339100 ms CreateObjectMapping: 0.111500 ms MarkObjects: 3.176900 ms DeleteObjects: 0.021500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002560 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.439 seconds +Domain Reload Profiling: + ReloadAssembly (1439ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1262ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (306ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (52ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2721. +Total: 3.064300 ms (FindLiveObjects: 0.256100 ms CreateObjectMapping: 0.106600 ms MarkObjects: 2.683000 ms DeleteObjects: 0.017600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002308 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.419 seconds +Domain Reload Profiling: + ReloadAssembly (1420ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1247ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (310ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (200ms) + 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.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2723. +Total: 3.076000 ms (FindLiveObjects: 0.216900 ms CreateObjectMapping: 0.095800 ms MarkObjects: 2.744200 ms DeleteObjects: 0.017500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006089 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.402 seconds +Domain Reload Profiling: + ReloadAssembly (2403ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (2144ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (531ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (85ms) + SetupLoadedEditorAssemblies (605ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (145ms) + ProcessInitializeOnLoadAttributes (424ms) + ProcessInitializeOnLoadMethodAttributes (11ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 2.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2725. +Total: 11.267600 ms (FindLiveObjects: 1.014700 ms CreateObjectMapping: 0.785600 ms MarkObjects: 9.396000 ms DeleteObjects: 0.067100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002340 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.431 seconds +Domain Reload Profiling: + ReloadAssembly (1432ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1189ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (267ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (54ms) + SetupLoadedEditorAssemblies (304ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (100ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + 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.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2727. +Total: 3.453700 ms (FindLiveObjects: 0.318600 ms CreateObjectMapping: 0.127000 ms MarkObjects: 2.978400 ms DeleteObjects: 0.027900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002362 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.319 seconds +Domain Reload Profiling: + ReloadAssembly (1319ms) + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1129ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2729. +Total: 2.625900 ms (FindLiveObjects: 0.243800 ms CreateObjectMapping: 0.086900 ms MarkObjects: 2.279800 ms DeleteObjects: 0.014600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002496 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.313 seconds +Domain Reload Profiling: + ReloadAssembly (1313ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1098ms) + LoadAssemblies (90ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (277ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (279ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (173ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2731. +Total: 3.300800 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.088500 ms MarkObjects: 2.970300 ms DeleteObjects: 0.021400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005367 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found @@ -4435,30 +4558,30 @@ Native extension for WebGL target not found Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.279 seconds +- Completed reload, in 1.751 seconds Domain Reload Profiling: - ReloadAssembly (1280ms) - BeginReloadAssembly (121ms) + ReloadAssembly (1758ms) + BeginReloadAssembly (392ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (58ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (1092ms) - LoadAssemblies (86ms) + CreateAndSetChildDomain (201ms) + EndReloadAssembly (1282ms) + LoadAssemblies (176ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (262ms) + SetupTypeCache (324ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (49ms) - SetupLoadedEditorAssemblies (292ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (327ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (82ms) - ProcessInitializeOnLoadAttributes (190ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (220ms) ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (7ms) + AfterProcessingInitializeOnLoad (4ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (10ms) @@ -4466,12 +4589,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2694. -Total: 4.927400 ms (FindLiveObjects: 0.536400 ms CreateObjectMapping: 0.092000 ms MarkObjects: 4.267500 ms DeleteObjects: 0.029900 ms) +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2733. +Total: 3.632800 ms (FindLiveObjects: 0.262300 ms CreateObjectMapping: 0.111600 ms MarkObjects: 3.127600 ms DeleteObjects: 0.130300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4486,63 +4609,185 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 53.821717 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7995a3748b11ecc60f2e54ce2f9c3675') in 0.059799 seconds - Import took 0.064338 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.170263 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '928eef6716113c85b5490a134ebf5daf') in 0.011914 seconds - Import took 0.017170 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.241467 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '100486397d5cd8ad079d0946dba439c5') in 0.008088 seconds - Import took 0.011470 seconds . + Time since last request: 5829.844190 seconds. + path: Assets/Prefabs/EquipmentButtonPrefab.prefab + artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa1cd7e340c3e85e603ab44fcc9519c5') in 0.148419 seconds + Import took 0.153102 seconds . ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002882 seconds. +Registered in 0.004157 seconds. Begin MonoManager ReloadAssembly Native extension for LinuxStandalone target not found Native extension for WindowsStandalone target not found Native extension for OSXStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.274 seconds +- Completed reload, in 1.461 seconds Domain Reload Profiling: - ReloadAssembly (1274ms) - BeginReloadAssembly (102ms) + ReloadAssembly (1461ms) + BeginReloadAssembly (124ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (1118ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1240ms) LoadAssemblies (84ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (319ms) + SetupTypeCache (257ms) ReleaseScriptCaches (1ms) - RebuildScriptCaches (43ms) - SetupLoadedEditorAssemblies (267ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (230ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2735. +Total: 3.062600 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.093400 ms MarkObjects: 2.722800 ms DeleteObjects: 0.025300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002320 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.587 seconds +Domain Reload Profiling: + ReloadAssembly (1587ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1285ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (401ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (299ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (7ms) SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2737. +Total: 2.984000 ms (FindLiveObjects: 0.409900 ms CreateObjectMapping: 0.135400 ms MarkObjects: 2.417000 ms DeleteObjects: 0.019800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 151.430097 seconds. + path: Assets/Prefabs/Cards/AddStamina.prefab + artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '658d86f51f102e672638f0be0476b3b4') in 0.058185 seconds + Import took 0.063611 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000363 seconds. + path: Assets/Scripts/Configs/EquipmentConfigs/Armor.asset + artifactKey: Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EquipmentConfigs/Armor.asset using Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfe77ca10f299a0b4682d3d5a08cc1e0') in 0.012276 seconds + Import took 0.016592 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002785 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1510ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1265ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (314ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (78ms) - ProcessInitializeOnLoadAttributes (173ms) - ProcessInitializeOnLoadMethodAttributes (4ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (6ms) AfterProcessingInitializeOnLoad (5ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -4551,12 +4796,12 @@ Platform modules already initialized, skipping Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2105 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.1 MB. -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2696. -Total: 2.616200 ms (FindLiveObjects: 0.193400 ms CreateObjectMapping: 0.080300 ms MarkObjects: 2.324000 ms DeleteObjects: 0.017600 ms) +Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2739. +Total: 2.744700 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.114900 ms MarkObjects: 2.393400 ms DeleteObjects: 0.020600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> @@ -4569,4 +4814,3308 @@ AssetImportParameters requested are different than current active one (requested custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -AssetImportWorkerClient::OnTransportError - code=2 error=End of file +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003153 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.573 seconds +Domain Reload Profiling: + ReloadAssembly (1573ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1304ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (367ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2741. +Total: 2.666200 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.099200 ms MarkObjects: 2.315600 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003371 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.501 seconds +Domain Reload Profiling: + ReloadAssembly (1501ms) + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1306ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (77ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 97.9 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2743. +Total: 2.811300 ms (FindLiveObjects: 0.220500 ms CreateObjectMapping: 0.097300 ms MarkObjects: 2.478100 ms DeleteObjects: 0.014600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003861 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.543 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1353ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (422ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (309ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (204ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2745. +Total: 2.712200 ms (FindLiveObjects: 0.216300 ms CreateObjectMapping: 0.092000 ms MarkObjects: 2.388400 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.003554 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.449 seconds +Domain Reload Profiling: + ReloadAssembly (1449ms) + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1260ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (400ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (298ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (204ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.0 MB. +System memory in use after: 98.2 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2747. +Total: 2.683100 ms (FindLiveObjects: 0.213900 ms CreateObjectMapping: 0.090800 ms MarkObjects: 2.364200 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 Import Request. + Time since last request: 566.054393 seconds. + path: Assets/DataHolder.cs + artifactKey: Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/DataHolder.cs using Guid(7dc4bce8f5915e742a365be001dbc164) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ad04747cc57c989fc39d7109aa40489') in 0.012518 seconds + Import took 0.016687 seconds . + +======================================================================== +Received Import Request. + Time since last request: 109.966863 seconds. + path: Assets/Prefabs + artifactKey: Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs using Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab464ff287aed2b45edc76128fbfdea8') in 0.008581 seconds + Import took 0.012189 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.450606 seconds. + path: Assets/Scripts/Configs + artifactKey: Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs using Guid(585041ddc6a9fb342971f358b51b4014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '713bed461ae6034ae4e6ec70e5ebc847') in 0.006909 seconds + Import took 0.010762 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.929895 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset + artifactKey: Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset using Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a9011072b9d24227132cee2684b8f10') in 0.023303 seconds + Import took 0.027322 seconds . + +======================================================================== +Received Import Request. + Time since last request: 20.770817 seconds. + path: Assets/Scripts/Configs/BattleConfigs/FirstEasyBattle.asset + artifactKey: Guid(3cef7b3afdcce6a4a97f2883ee7ce203) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/FirstEasyBattle.asset using Guid(3cef7b3afdcce6a4a97f2883ee7ce203) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9124882ba13a600949acb112a1da8154') in 0.011095 seconds + Import took 0.015624 seconds . + +======================================================================== +Received Import Request. + Time since last request: 11.740460 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Shaman.asset + artifactKey: Guid(4f3f54f77793e6742beb0119340b03f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Shaman.asset using Guid(4f3f54f77793e6742beb0119340b03f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23032f461880ffc627acac3e9b54f7bd') in 0.003747 seconds + Import took 0.007700 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000171 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset + artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18bae9952b827d178c51762daea42502') in 0.008434 seconds + Import took 0.012527 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000197 seconds. + path: Assets/Scripts/Configs/EnemyConfigs/Zombie.asset + artifactKey: Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/EnemyConfigs/Zombie.asset using Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd16a80e4aab913a6fc86515c8333f91a') in 0.004510 seconds + Import took 0.008717 seconds . + +======================================================================== +Received Import Request. + Time since last request: 87.977249 seconds. + path: Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset + artifactKey: Guid(842ea87c23ba82e4980d0d5c1bccb263) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset using Guid(842ea87c23ba82e4980d0d5c1bccb263) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'caacdf7090934d5f6d16ae846bb96ccb') in 0.008292 seconds + Import took 0.013051 seconds . + +======================================================================== +Received Import Request. + Time since last request: 31.782068 seconds. + path: Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset + artifactKey: Guid(3cef7b3afdcce6a4a97f2883ee7ce203) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/EasyBattle_1.asset using Guid(3cef7b3afdcce6a4a97f2883ee7ce203) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1d59633feb07eaedd0aee5e1ef633ee') in 0.009752 seconds + Import took 0.014399 seconds . + +======================================================================== +Received Import Request. + Time since last request: 110.312484 seconds. + path: Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset + artifactKey: Guid(c4b45319e9ae8c24a9438acde55e9f9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset using Guid(c4b45319e9ae8c24a9438acde55e9f9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06d0fd54e1c0889b8e0446b47166518f') in 0.008464 seconds + Import took 0.012748 seconds . + +======================================================================== +Received Import Request. + Time since last request: 39.562494 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBase_1.asset + artifactKey: Guid(831eae662de3b074ba854d72dd4b7706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBase_1.asset using Guid(831eae662de3b074ba854d72dd4b7706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c713d99ad6805266d57bd90e9d727b1a') in 0.007945 seconds + Import took 0.011740 seconds . + +======================================================================== +Received Import Request. + Time since last request: 75.713300 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset + artifactKey: Guid(a58b74e66a955c842842e28c951d39f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset using Guid(a58b74e66a955c842842e28c951d39f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e99051b21a33b582c2c9352275c19b0') in 0.007142 seconds + Import took 0.011673 seconds . + +======================================================================== +Received Import Request. + Time since last request: 56.244281 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset + artifactKey: Guid(0b30cfc668c041747a968d2c8bf1a3cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset using Guid(0b30cfc668c041747a968d2c8bf1a3cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b48e8a74f90eb93ed0b176788bc26a5') in 0.007018 seconds + Import took 0.010868 seconds . + +======================================================================== +Received Import Request. + Time since last request: 8.479236 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset + artifactKey: Guid(831eae662de3b074ba854d72dd4b7706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBattle_1.asset using Guid(831eae662de3b074ba854d72dd4b7706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac6971dcb00004f8726596e4078c6104') in 0.007274 seconds + Import took 0.010582 seconds . + +======================================================================== +Received Import Request. + Time since last request: 87.088525 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset + artifactKey: Guid(c76ef6aeaf7e2074fb44abc864f27a75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset using Guid(c76ef6aeaf7e2074fb44abc864f27a75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43a6572bd310afc7311ccd1bbefbd871') in 0.008138 seconds + Import took 0.012636 seconds . + +======================================================================== +Received Import Request. + Time since last request: 85.832917 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset + artifactKey: Guid(1ddd96264d0ff474fb1b38acae40b69f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset using Guid(1ddd96264d0ff474fb1b38acae40b69f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7a1d9b3d79eefa988443539892a66db') in 0.007701 seconds + Import took 0.011713 seconds . + +======================================================================== +Received Import Request. + Time since last request: 49.124630 seconds. + path: Assets/Scripts/Configs/BattleConfigs/Configs_BattleConfig.asset + artifactKey: Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/Configs_BattleConfig.asset using Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7101e4f9dad1f4678eba4ba50689214') in 0.011601 seconds + Import took 0.017834 seconds . + +======================================================================== +Received Import Request. + Time since last request: 14.199720 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset + artifactKey: Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset using Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb924f494bf139d7ea8d7ef2a45d6814') in 0.007714 seconds + Import took 0.011825 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003680 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.763 seconds +Domain Reload Profiling: + ReloadAssembly (1763ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1402ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (214ms) + 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.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2749. +Total: 32.895200 ms (FindLiveObjects: 0.432700 ms CreateObjectMapping: 0.169400 ms MarkObjects: 32.270100 ms DeleteObjects: 0.021200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002745 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.949 seconds +Domain Reload Profiling: + ReloadAssembly (1950ms) + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1712ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (389ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (104ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2751. +Total: 4.128200 ms (FindLiveObjects: 0.344800 ms CreateObjectMapping: 0.138000 ms MarkObjects: 3.615700 ms DeleteObjects: 0.027700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003318 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.468 seconds +Domain Reload Profiling: + ReloadAssembly (1468ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (1266ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (272ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (217ms) + 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.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2753. +Total: 3.947100 ms (FindLiveObjects: 0.278000 ms CreateObjectMapping: 0.093400 ms MarkObjects: 3.521500 ms DeleteObjects: 0.053400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005485 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.427 seconds +Domain Reload Profiling: + ReloadAssembly (1428ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (1206ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (266ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2755. +Total: 3.048800 ms (FindLiveObjects: 0.209200 ms CreateObjectMapping: 0.088400 ms MarkObjects: 2.721400 ms DeleteObjects: 0.028900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003818 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.509 seconds +Domain Reload Profiling: + ReloadAssembly (1509ms) + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1305ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (263ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (86ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2757. +Total: 2.711700 ms (FindLiveObjects: 0.224200 ms CreateObjectMapping: 0.099000 ms MarkObjects: 2.372900 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.002830 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.652 seconds +Domain Reload Profiling: + ReloadAssembly (1652ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1415ms) + LoadAssemblies (94ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (381ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2759. +Total: 2.969300 ms (FindLiveObjects: 0.217900 ms CreateObjectMapping: 0.117400 ms MarkObjects: 2.601000 ms DeleteObjects: 0.032300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003304 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.544 seconds +Domain Reload Profiling: + ReloadAssembly (1544ms) + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1351ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (8ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (221ms) + 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.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2761. +Total: 3.212100 ms (FindLiveObjects: 0.245900 ms CreateObjectMapping: 0.107100 ms MarkObjects: 2.839600 ms DeleteObjects: 0.018400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003971 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.990 seconds +Domain Reload Profiling: + ReloadAssembly (1991ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1624ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (609ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (199ms) + ProcessInitializeOnLoadMethodAttributes (4ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2763. +Total: 3.022900 ms (FindLiveObjects: 0.258000 ms CreateObjectMapping: 0.098200 ms MarkObjects: 2.643800 ms DeleteObjects: 0.021700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005210 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.543 seconds +Domain Reload Profiling: + ReloadAssembly (1543ms) + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1367ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (90ms) + ProcessInitializeOnLoadAttributes (219ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2765. +Total: 3.096600 ms (FindLiveObjects: 0.222300 ms CreateObjectMapping: 0.082200 ms MarkObjects: 2.775600 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.002246 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.582 seconds +Domain Reload Profiling: + ReloadAssembly (1582ms) + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (1425ms) + LoadAssemblies (82ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (359ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (86ms) + ProcessInitializeOnLoadAttributes (252ms) + 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 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.3 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2767. +Total: 6.481200 ms (FindLiveObjects: 0.540300 ms CreateObjectMapping: 0.451300 ms MarkObjects: 5.454500 ms DeleteObjects: 0.032000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004529 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.707 seconds +Domain Reload Profiling: + ReloadAssembly (1708ms) + BeginReloadAssembly (194ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (80ms) + EndReloadAssembly (1406ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (307ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.1 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2769. +Total: 3.427600 ms (FindLiveObjects: 0.435400 ms CreateObjectMapping: 0.180400 ms MarkObjects: 2.784700 ms DeleteObjects: 0.025500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002424 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.819 seconds +Domain Reload Profiling: + ReloadAssembly (1819ms) + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1586ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (495ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (95ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (227ms) + 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.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2771. +Total: 2.983500 ms (FindLiveObjects: 0.226400 ms CreateObjectMapping: 0.085800 ms MarkObjects: 2.656500 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004317 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.759 seconds +Domain Reload Profiling: + ReloadAssembly (2759ms) + BeginReloadAssembly (233ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (108ms) + EndReloadAssembly (2426ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (598ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (645ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (66ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (166ms) + ProcessInitializeOnLoadAttributes (394ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (16ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2773. +Total: 9.268800 ms (FindLiveObjects: 1.437400 ms CreateObjectMapping: 0.378100 ms MarkObjects: 7.420100 ms DeleteObjects: 0.030800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004676 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.989 seconds +Domain Reload Profiling: + ReloadAssembly (1990ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1761ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (601ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (88ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2775. +Total: 3.193600 ms (FindLiveObjects: 0.409100 ms CreateObjectMapping: 0.287700 ms MarkObjects: 2.474200 ms DeleteObjects: 0.020800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002261 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.588 seconds +Domain Reload Profiling: + ReloadAssembly (1588ms) + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + EndReloadAssembly (1427ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (342ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (89ms) + ProcessInitializeOnLoadAttributes (235ms) + 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.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2777. +Total: 5.781400 ms (FindLiveObjects: 1.184000 ms CreateObjectMapping: 0.750500 ms MarkObjects: 3.821600 ms DeleteObjects: 0.023600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002659 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.613 seconds +Domain Reload Profiling: + ReloadAssembly (1613ms) + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1453ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (328ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (346ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (111ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (7ms) + 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 1.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2779. +Total: 6.723100 ms (FindLiveObjects: 1.392900 ms CreateObjectMapping: 0.756300 ms MarkObjects: 4.551000 ms DeleteObjects: 0.021300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002228 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.645 seconds +Domain Reload Profiling: + ReloadAssembly (1645ms) + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1487ms) + LoadAssemblies (72ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (417ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (156ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2781. +Total: 6.519500 ms (FindLiveObjects: 0.570000 ms CreateObjectMapping: 0.197000 ms MarkObjects: 5.722700 ms DeleteObjects: 0.027600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003925 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.760 seconds +Domain Reload Profiling: + ReloadAssembly (1760ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1562ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + 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.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2783. +Total: 3.358700 ms (FindLiveObjects: 0.259400 ms CreateObjectMapping: 0.124900 ms MarkObjects: 2.947100 ms DeleteObjects: 0.025700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002409 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.021 seconds +Domain Reload Profiling: + ReloadAssembly (2022ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1772ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (496ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (58ms) + SetupLoadedEditorAssemblies (412ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (152ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (7ms) + 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.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2785. +Total: 3.501600 ms (FindLiveObjects: 0.282100 ms CreateObjectMapping: 0.118500 ms MarkObjects: 3.076400 ms DeleteObjects: 0.023100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002823 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.921 seconds +Domain Reload Profiling: + ReloadAssembly (1921ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1738ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (576ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (225ms) + 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.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2787. +Total: 3.092200 ms (FindLiveObjects: 0.303900 ms CreateObjectMapping: 0.106700 ms MarkObjects: 2.659400 ms DeleteObjects: 0.021100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005150 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.526 seconds +Domain Reload Profiling: + ReloadAssembly (1527ms) + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (1339ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (293ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2789. +Total: 3.876600 ms (FindLiveObjects: 0.267000 ms CreateObjectMapping: 0.123500 ms MarkObjects: 3.464500 ms DeleteObjects: 0.020300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002799 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.930 seconds +Domain Reload Profiling: + ReloadAssembly (1933ms) + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (16ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1709ms) + LoadAssemblies (77ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (313ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (141ms) + SetupLoadedEditorAssemblies (462ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (200ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (47ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2791. +Total: 3.266500 ms (FindLiveObjects: 0.252700 ms CreateObjectMapping: 0.092400 ms MarkObjects: 2.902600 ms DeleteObjects: 0.017700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003399 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.756 seconds +Domain Reload Profiling: + ReloadAssembly (1756ms) + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1550ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (53ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2793. +Total: 3.257100 ms (FindLiveObjects: 0.333600 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.819000 ms DeleteObjects: 0.017700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004987 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.495 seconds +Domain Reload Profiling: + ReloadAssembly (1496ms) + BeginReloadAssembly (90ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + EndReloadAssembly (1350ms) + LoadAssemblies (72ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (299ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (94ms) + ProcessInitializeOnLoadAttributes (174ms) + 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.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.4 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2795. +Total: 3.300300 ms (FindLiveObjects: 0.220400 ms CreateObjectMapping: 0.144500 ms MarkObjects: 2.918000 ms DeleteObjects: 0.016600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.015201 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.878 seconds +Domain Reload Profiling: + ReloadAssembly (1878ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1676ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (105ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2797. +Total: 3.898800 ms (FindLiveObjects: 0.238300 ms CreateObjectMapping: 0.101900 ms MarkObjects: 3.535400 ms DeleteObjects: 0.022300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003220 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.700 seconds +Domain Reload Profiling: + ReloadAssembly (1701ms) + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (1532ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (341ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (6ms) + 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.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.2 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2799. +Total: 3.429300 ms (FindLiveObjects: 0.325900 ms CreateObjectMapping: 0.175800 ms MarkObjects: 2.885200 ms DeleteObjects: 0.040600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003707 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.695 seconds +Domain Reload Profiling: + ReloadAssembly (1696ms) + BeginReloadAssembly (224ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (108ms) + EndReloadAssembly (1389ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (304ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (96ms) + ProcessInitializeOnLoadAttributes (226ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2801. +Total: 2.774200 ms (FindLiveObjects: 0.251600 ms CreateObjectMapping: 0.092500 ms MarkObjects: 2.413900 ms DeleteObjects: 0.015100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002253 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.732 seconds +Domain Reload Profiling: + ReloadAssembly (1733ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1563ms) + LoadAssemblies (80ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (107ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (93ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2803. +Total: 11.218200 ms (FindLiveObjects: 2.912700 ms CreateObjectMapping: 0.592800 ms MarkObjects: 7.676100 ms DeleteObjects: 0.034600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.017428 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.957 seconds +Domain Reload Profiling: + ReloadAssembly (1957ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + EndReloadAssembly (1741ms) + LoadAssemblies (78ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (92ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2805. +Total: 6.485900 ms (FindLiveObjects: 0.643000 ms CreateObjectMapping: 0.241900 ms MarkObjects: 5.573200 ms DeleteObjects: 0.025400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003595 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.743 seconds +Domain Reload Profiling: + ReloadAssembly (1744ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1469ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (312ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (307ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (207ms) + 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.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2807. +Total: 3.174600 ms (FindLiveObjects: 0.300200 ms CreateObjectMapping: 0.147400 ms MarkObjects: 2.700700 ms DeleteObjects: 0.024800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002952 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.579 seconds +Domain Reload Profiling: + ReloadAssembly (2580ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (2406ms) + LoadAssemblies (88ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (635ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (97ms) + SetupLoadedEditorAssemblies (540ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (389ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2809. +Total: 2.849800 ms (FindLiveObjects: 0.285600 ms CreateObjectMapping: 0.107900 ms MarkObjects: 2.437700 ms DeleteObjects: 0.017700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010497 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 2.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.841 seconds +Domain Reload Profiling: + ReloadAssembly (2842ms) + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (2554ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (566ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (519ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (3ms) + BeforeProcessingInitializeOnLoad (156ms) + ProcessInitializeOnLoadAttributes (326ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2811. +Total: 7.658400 ms (FindLiveObjects: 0.596900 ms CreateObjectMapping: 0.380700 ms MarkObjects: 6.635300 ms DeleteObjects: 0.042600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002363 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.844 seconds +Domain Reload Profiling: + ReloadAssembly (1845ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1652ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (279ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (94ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (82ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2813. +Total: 3.601800 ms (FindLiveObjects: 0.253800 ms CreateObjectMapping: 0.101400 ms MarkObjects: 3.221600 ms DeleteObjects: 0.024100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002484 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.689 seconds +Domain Reload Profiling: + ReloadAssembly (1689ms) + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1515ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (326ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (316ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (99ms) + ProcessInitializeOnLoadAttributes (197ms) + 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.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2815. +Total: 4.398500 ms (FindLiveObjects: 0.296500 ms CreateObjectMapping: 0.145000 ms MarkObjects: 3.841400 ms DeleteObjects: 0.110600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.007036 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.710 seconds +Domain Reload Profiling: + ReloadAssembly (1711ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1500ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (367ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (309ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (98ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2817. +Total: 3.634600 ms (FindLiveObjects: 0.590900 ms CreateObjectMapping: 0.195400 ms MarkObjects: 2.825400 ms DeleteObjects: 0.021400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002494 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.646 seconds +Domain Reload Profiling: + ReloadAssembly (1646ms) + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + EndReloadAssembly (1484ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (334ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2819. +Total: 5.315200 ms (FindLiveObjects: 0.278200 ms CreateObjectMapping: 0.083600 ms MarkObjects: 4.930300 ms DeleteObjects: 0.021700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004301 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.455 seconds +Domain Reload Profiling: + ReloadAssembly (2455ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (2159ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (425ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (91ms) + SetupLoadedEditorAssemblies (442ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (8ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2821. +Total: 4.996500 ms (FindLiveObjects: 0.903200 ms CreateObjectMapping: 0.304600 ms MarkObjects: 3.763800 ms DeleteObjects: 0.023600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004878 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.306 seconds +Domain Reload Profiling: + ReloadAssembly (2307ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1929ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (473ms) + ReleaseScriptCaches (6ms) + RebuildScriptCaches (96ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (220ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.3 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2823. +Total: 5.392400 ms (FindLiveObjects: 0.373700 ms CreateObjectMapping: 0.103000 ms MarkObjects: 4.861900 ms DeleteObjects: 0.032500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004432 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.619 seconds +Domain Reload Profiling: + ReloadAssembly (2620ms) + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (2391ms) + LoadAssemblies (201ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (449ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (21ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (277ms) + ProcessInitializeOnLoadMethodAttributes (9ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2825. +Total: 8.070700 ms (FindLiveObjects: 0.936600 ms CreateObjectMapping: 1.950800 ms MarkObjects: 5.148800 ms DeleteObjects: 0.030800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002694 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.609 seconds +Domain Reload Profiling: + ReloadAssembly (1609ms) + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (1420ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (261ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (289ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (80ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2117 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2827. +Total: 2.986400 ms (FindLiveObjects: 0.242600 ms CreateObjectMapping: 0.100300 ms MarkObjects: 2.625400 ms DeleteObjects: 0.017200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002442 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.810 seconds +Domain Reload Profiling: + ReloadAssembly (1810ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (74ms) + EndReloadAssembly (1562ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (306ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (45ms) + SetupLoadedEditorAssemblies (348ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (254ms) + 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 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2830. +Total: 4.984400 ms (FindLiveObjects: 0.802900 ms CreateObjectMapping: 0.232000 ms MarkObjects: 3.915500 ms DeleteObjects: 0.032000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002211 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.703 seconds +Domain Reload Profiling: + ReloadAssembly (1703ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + EndReloadAssembly (1438ms) + LoadAssemblies (151ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (50ms) + SetupLoadedEditorAssemblies (315ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (109ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2832. +Total: 3.724500 ms (FindLiveObjects: 0.397700 ms CreateObjectMapping: 0.228200 ms MarkObjects: 3.076100 ms DeleteObjects: 0.021000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002263 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.589 seconds +Domain Reload Profiling: + ReloadAssembly (1589ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + EndReloadAssembly (1405ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (287ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2834. +Total: 3.022600 ms (FindLiveObjects: 0.230400 ms CreateObjectMapping: 0.084100 ms MarkObjects: 2.693100 ms DeleteObjects: 0.013300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002275 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.764 seconds +Domain Reload Profiling: + ReloadAssembly (1764ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1509ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (43ms) + SetupLoadedEditorAssemblies (301ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (98ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2836. +Total: 3.415400 ms (FindLiveObjects: 0.251000 ms CreateObjectMapping: 0.094300 ms MarkObjects: 3.046700 ms DeleteObjects: 0.022600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002318 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.746 seconds +Domain Reload Profiling: + ReloadAssembly (1746ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1503ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (55ms) + SetupLoadedEditorAssemblies (310ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (103ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 98.4 MB. +System memory in use after: 98.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2838. +Total: 3.012400 ms (FindLiveObjects: 0.287500 ms CreateObjectMapping: 0.113500 ms MarkObjects: 2.592500 ms DeleteObjects: 0.017700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002923 seconds. +Callback registration failed. Increase kMaxCallback. +Fatal Error! Callback registration failed. Increase kMaxCallback. +Crash!!! +SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Mono;.;C:\Users\Dara\Documents\1\PO;C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'Dara' +OS-Version: 10.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe:Unity.exe (00007FF6A6420000), size: 135270400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.3.19.61751 +C:\Windows\SYSTEM32\ntdll.dll:ntdll.dll (00007FF95C3F0000), size: 2052096 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\KERNEL32.DLL:KERNEL32.DLL (00007FF95A6A0000), size: 778240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\KERNELBASE.dll:KERNELBASE.dll (00007FF959B60000), size: 2916352 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\CRYPT32.dll:CRYPT32.dll (00007FF95A230000), size: 1400832 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\System32\ucrtbase.dll:ucrtbase.dll (00007FF95A100000), size: 1048576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 +C:\Windows\System32\USER32.dll:USER32.dll (00007FF95C010000), size: 1708032 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\System32\win32u.dll:win32u.dll (00007FF95A200000), size: 139264 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\GDI32.dll:GDI32.dll (00007FF95B930000), size: 176128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FF9029B0000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FF93B2A0000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FF8E2810000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\gdi32full.dll:gdi32full.dll (00007FF959E30000), size: 1101824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\msvcp_win.dll:msvcp_win.dll (00007FF95A390000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 +C:\Windows\System32\ADVAPI32.dll:ADVAPI32.dll (00007FF95A5E0000), size: 712704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\msvcrt.dll:msvcrt.dll (00007FF95A970000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FF909B70000), size: 1609728 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6582272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FF90CF70000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\sechost.dll:sechost.dll (00007FF95A810000), size: 638976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\RPCRT4.dll:RPCRT4.dll (00007FF95B590000), size: 1200128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\WS2_32.dll:WS2_32.dll (00007FF95BFA0000), size: 438272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\WLDAP32.dll:WLDAP32.dll (00007FF95ADD0000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FF944D80000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 +C:\Windows\System32\Normaliz.dll:Normaliz.dll (00007FF95AE30000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\SHELL32.dll:SHELL32.dll (00007FF95AE40000), size: 7618560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\SHLWAPI.dll:SHLWAPI.dll (00007FF95A910000), size: 348160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\tbb.dll:tbb.dll (00007FF9150D0000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 +C:\Windows\System32\ole32.dll:ole32.dll (00007FF95BE70000), size: 1220608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FF93E290000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\System32\combase.dll:combase.dll (00007FF95AA10000), size: 3493888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 +C:\Windows\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FF93E200000), size: 581632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\System32\IMM32.dll:IMM32.dll (00007FF95B740000), size: 196608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FF914AD0000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40664.0 +C:\Windows\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FF9076D0000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40664.0 +C:\Windows\System32\SETUPAPI.dll:SETUPAPI.dll (00007FF95B9F0000), size: 4661248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1237 +C:\Windows\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FF93D1B0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.30.30423.0 +C:\Windows\System32\cfgmgr32.dll:cfgmgr32.dll (00007FF959FD0000), size: 319488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FF9262A0000), size: 1200128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\SYSTEM32\GLU32.dll:GLU32.dll (00007FF926230000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\System32\bcrypt.dll:bcrypt.dll (00007FF95A020000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 +C:\Windows\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FF958F50000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\OLEAUT32.dll:OLEAUT32.dll (00007FF95C2E0000), size: 839680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.985 +C:\Windows\System32\WINTRUST.dll:WINTRUST.dll (00007FF959B00000), size: 393216 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FF951710000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\WINMM.dll:WINMM.dll (00007FF944000000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\HID.DLL:HID.DLL (00007FF958390000), size: 53248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FF904810000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 +C:\Windows\SYSTEM32\VERSION.dll:VERSION.dll (00007FF952B70000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FF902120000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 +C:\Windows\SYSTEM32\WSOCK32.dll:WSOCK32.dll (00007FF93B8D0000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FF917AD0000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 +C:\Windows\SYSTEM32\Secur32.dll:Secur32.dll (00007FF93B920000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FF9599F0000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL.dll:OpenRL.dll (000001EFD9600000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 +C:\Windows\SYSTEM32\MSVCP100.dll:MSVCP100.dll (000000006D6A0000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.473 +C:\Windows\SYSTEM32\MSVCR100.dll:MSVCR100.dll (000000006D5C0000), size: 860160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.40219.473 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\embree.dll:embree.dll (00007FF8EDE40000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 +C:\Windows\SYSTEM32\MSWSOCK.DLL:MSWSOCK.DLL (00007FF9592B0000), size: 434176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (000001EFDA230000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 +C:\Windows\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FF9596E0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FF9579F0000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FF959F40000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 +C:\Windows\system32\uxtheme.dll:uxtheme.dll (00007FF9570B0000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\shcore.dll:shcore.dll (00007FF95A760000), size: 708608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FF957BF0000), size: 7950336 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\SYSTEM32\Wldp.dll:Wldp.dll (00007FF959550000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\profapi.dll:profapi.dll (00007FF959A40000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.844 +C:\Windows\System32\clbcatq.dll:clbcatq.dll (00007FF95A530000), size: 692224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 +C:\Windows\System32\netprofm.dll:netprofm.dll (00007FF9544A0000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\System32\npmproxy.dll:npmproxy.dll (00007FF9513B0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\System32\NSI.dll:NSI.dll (00007FF95A690000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.610 +C:\Windows\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FF9526A0000), size: 94208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FF952680000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FF958FA0000), size: 831488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\System32\fwpuclnt.dll:fwpuclnt.dll (00007FF94FB20000), size: 520192 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FF9526C0000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FF90DA40000), size: 557056 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\SYSTEM32\d3d11.dll:d3d11.dll (00007FF9557A0000), size: 2506752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 +C:\Windows\SYSTEM32\dxgi.dll:dxgi.dll (00007FF9583F0000), size: 999424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\DriverStore\FileRepository\nvami.inf_amd64_1aa8ffdaa5d9d51f\nvldumdx.dll:nvldumdx.dll (00007FF906A30000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.9709 +C:\Windows\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FF94BB40000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\SYSTEM32\drvstore.dll:drvstore.dll (00007FF94B0D0000), size: 1351680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\devobj.dll:devobj.dll (00007FF9598A0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FF9594C0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\imagehlp.dll:imagehlp.dll (00007FF95A510000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 +C:\Windows\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FF9594A0000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\system32\rsaenh.dll:rsaenh.dll (00007FF958BC0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1052 +C:\Windows\System32\DriverStore\FileRepository\nvami.inf_amd64_1aa8ffdaa5d9d51f\nvwgf2umx.dll:nvwgf2umx.dll (00007FF8DEEA0000), size: 43167744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.9709 +C:\Windows\system32\nvspcap64.dll:nvspcap64.dll (00007FF904540000), size: 2904064 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.24.0.126 +C:\Windows\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FF9587F0000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\dxcore.dll:dxcore.dll (00007FF94FAB0000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\system32\wbem\wbemprox.dll:wbemprox.dll (00007FF94BAD0000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FF94A520000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 +C:\Windows\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FF949B10000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 +C:\Windows\system32\wbem\fastprox.dll:fastprox.dll (00007FF949B30000), size: 1093632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\SYSTEM32\amsi.dll:amsi.dll (00007FF949A40000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.746 +C:\Windows\SYSTEM32\USERENV.dll:USERENV.dll (00007FF9599C0000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.572 +C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.2111.5-0\MpOav.dll:MpOav.dll (00007FF9499C0000), size: 499712 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 4.18.2111.5 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FF90D560000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 +C:\Windows\SYSTEM32\opencl.dll:opencl.dll (00007FF904E90000), size: 1474560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\radeonrays.dll:radeonrays.dll (00007FF90D440000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' +C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FF8ED110000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\PSAPI.DLL:PSAPI.DLL (00007FF95B770000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll:Microsoft.VisualStudio.Setup.Configuration.Native.dll (00007FF9325A0000), size: 327680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.7.3111.17308 +C:\Windows\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FF955220000), size: 1007616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.1023 +C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\comctl32.dll:comctl32.dll (00007FF943BB0000), size: 2727936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.19041.1110 +C:\Windows\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FF951C30000), size: 1785856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FF92F830000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 +C:\Windows\SYSTEM32\policymanager.dll:policymanager.dll (00007FF955150000), size: 655360 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\SYSTEM32\msvcp110_win.dll:msvcp110_win.dll (00007FF958C50000), size: 565248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\MrmCoreR.dll:MrmCoreR.dll (00007FF949320000), size: 1003520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\iertutil.dll:iertutil.dll (00007FF9474E0000), size: 2818048 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.19041.1266 +C:\Windows\SYSTEM32\windows.staterepositorycore.dll:windows.staterepositorycore.dll (00007FF94B0B0000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\bcp47mrm.dll:bcp47mrm.dll (00007FF948A90000), size: 184320 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 +C:\Windows\System32\Windows.UI.dll:Windows.UI.dll (00007FF948FB0000), size: 1314816 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.746 +C:\Windows\System32\WindowManagementAPI.dll:WindowManagementAPI.dll (00007FF952080000), size: 659456 (result: 0), SymType: '-deferred-', PDB: '' +C:\Windows\System32\TextInputFramework.dll:TextInputFramework.dll (00007FF948EB0000), size: 1019904 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 +C:\Windows\System32\InputHost.dll:InputHost.dll (00007FF948D50000), size: 1384448 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 +C:\Windows\System32\CoreUIComponents.dll:CoreUIComponents.dll (00007FF9569D0000), size: 3530752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\CoreMessaging.dll:CoreMessaging.dll (00007FF956D30000), size: 991232 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.746 +C:\Windows\SYSTEM32\wintypes.dll:wintypes.dll (00007FF9562F0000), size: 1392640 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 +C:\Windows\System32\twinapi.appcore.dll:twinapi.appcore.dll (00007FF951E70000), size: 2101248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.964 +C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1466_none_91a4907ccc87e3b8\gdiplus.dll:gdiplus.dll (00007FF943E50000), size: 1740800 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\System32\MSCTF.dll:MSCTF.dll (00007FF95C1C0000), size: 1134592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\SYSTEM32\edputil.dll:edputil.dll (00007FF939F90000), size: 147456 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 +C:\Windows\System32\Windows.StateRepositoryPS.dll:Windows.StateRepositoryPS.dll (00007FF944110000), size: 1335296 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1466 +C:\Windows\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FF9572F0000), size: 1982464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.867 + +========== OUTPUTTING STACK TRACE ================== + +0x00007FF959B94F69 (KERNELBASE) RaiseException +0x00007FF6A8BAA15D (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF6A8BAB0DA (Unity) EditorMonoConsole::LogToConsoleImplementation +0x00007FF6AA7D3DAE (Unity) DebugStringToFilePostprocessedStacktrace +0x00007FF6AA7D335F (Unity) DebugStringToFile +0x00007FF6A668BDD3 (Unity) CallbackArraySubBase::Register +0x00007FF6A939E559 (Unity) LoadDomainAndUserAssemblies +0x00007FF6A939EA0E (Unity) LoadUserAssemblies +0x00007FF6A9815A28 (Unity) ::operator() +0x00007FF6A98B95F2 (Unity) asio::detail::completion_handler >::do_complete +0x00007FF6A98BB750 (Unity) asio::detail::win_iocp_io_service::do_one +0x00007FF6A98BEEDE (Unity) asio::io_service::run +0x00007FF6A98420BB (Unity) RunAssetImportWorkerClientV2 +0x00007FF6A9842110 (Unity) RunAssetImporterV2 +0x00007FF6A8D055B6 (Unity) Application::InitializeProject +0x00007FF6A96B1342 (Unity) WinMain +0x00007FF6AB5069B6 (Unity) __scrt_common_main_seh +0x00007FF95A6B7034 (KERNEL32) BaseThreadInitThunk +0x00007FF95C442651 (ntdll) RtlUserThreadStart + +========== END OF STACKTRACE =========== + +A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: + * C:/Users/Dara/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log deleted file mode 100644 index c334d220..00000000 --- a/Logs/AssetImportWorker0.log +++ /dev/null @@ -1,8424 +0,0 @@ -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 -50715 -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 31.64 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:56684 -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.001134 seconds. -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 29.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.250 seconds -Domain Reload Profiling: - ReloadAssembly (1250ms) - BeginReloadAssembly (37ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - EndReloadAssembly (279ms) - LoadAssemblies (35ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (93ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (20ms) - SetupLoadedEditorAssemblies (112ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (29ms) - BeforeProcessingInitializeOnLoad (11ms) - ProcessInitializeOnLoadAttributes (50ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -Platform modules already initialized, skipping -Registering precompiled user dll's ... -Registered in 0.001172 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 29.81 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.766 seconds -Domain Reload Profiling: - ReloadAssembly (767ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - EndReloadAssembly (634ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (30ms) - BeforeProcessingInitializeOnLoad (50ms) - ProcessInitializeOnLoadAttributes (131ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 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 2124 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 95.8 MB. -System memory in use after: 95.9 MB. - -Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2564. -Total: 2.078200 ms (FindLiveObjects: 0.119700 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.838200 ms DeleteObjects: 0.076100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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 - artifactKey: Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts using Guid(74101b1addeb2064895101d2b1aac376) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c25a1d281167645a33bf722f65337e25') in 0.003253 seconds - Import took 0.005357 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000272 seconds. - 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.000700 seconds - Import took 0.002834 seconds . - -======================================================================== -Received Import Request. - Time since last request: 32.051360 seconds. - path: Assets/Scripts/Configs/EquipmentConfig - artifactKey: Guid(3d5fcd10a314d384a842c336d3fcfd16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig using Guid(3d5fcd10a314d384a842c336d3fcfd16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a09e84eb437f62402399e9d4f83cc02e') in 0.001014 seconds - Import took 0.003390 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.095324 seconds. - path: Assets/Scripts/Configs/EnemyConfigs - artifactKey: Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs using Guid(44990bee8511b1b45bdc0b0e8d1b6843) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46dcc98837762263e2e9090c0b6f3632') in 0.001094 seconds - Import took 0.003704 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.042513 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Shaman.asset - artifactKey: Guid(4f3f54f77793e6742beb0119340b03f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Shaman.asset using Guid(4f3f54f77793e6742beb0119340b03f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70dfb78b57952f340da8711c66aaf076') in 0.025444 seconds - Import took 0.027940 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000284 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Snake.asset - artifactKey: Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Snake.asset using Guid(b9a9200a18ccfab4eb3d8871e3c75a3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3289ee946efb2869de90499f0c0d318') in 0.001429 seconds - Import took 0.003722 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000243 seconds. - path: Assets/Scripts/Configs/EnemyConfigs/Zombie.asset - artifactKey: Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfigs/Zombie.asset using Guid(311edf240c8ea15449adcfbad6d87fbe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d6f3317cb68cf60a753570cd9b23131') in 0.001451 seconds - Import took 0.003748 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.408504 seconds. - path: Assets/Scripts/Configs/CardConfigs - artifactKey: Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs using Guid(de0abea23ac17564fa1fb5c18818f7a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '873ffc677639d70fca4cb3c11cfd4d98') in 0.001112 seconds - Import took 0.003538 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.056757 seconds. - path: Assets/Scripts/Configs/CardConfigs/AddStamina.asset - artifactKey: Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/AddStamina.asset using Guid(6edd37042b6a0064ba2364da30fe92c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6ce504e70f75e5bb803c96147ab5f86') in 0.001761 seconds - Import took 0.004137 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000198 seconds. - path: Assets/Scripts/Configs/CardConfigs/BigHealing.asset - artifactKey: Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/BigHealing.asset using Guid(bcf3a6ca876cd0541958d36a4735087a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd27add27d659598472f5f0e74b92d412') in 0.010854 seconds - Import took 0.013171 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000250 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallHealing.asset - artifactKey: Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallHealing.asset using Guid(60dce809256fdb34a91732594e0d5a34) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd82d7fdd2ec45104f9831240fbe4d8bd') in 0.001847 seconds - Import took 0.004073 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000243 seconds. - path: Assets/Scripts/Configs/CardConfigs/SmallArmor.asset - artifactKey: Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/SmallArmor.asset using Guid(6ecd057416fa5e345adf66268b4a29b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31d7bb1c487234e62ccb45acda8d9aef') in 0.001360 seconds - Import took 0.003641 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000213 seconds. - path: Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset - artifactKey: Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/LongBigDamage.asset using Guid(5169032180a01ac43905ed44dbad9b24) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c6b9235d8bf4c0c73567dc016f18ed3') in 0.001428 seconds - Import took 0.003703 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000255 seconds. - path: Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset - artifactKey: Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/LongSmallDamage.asset using Guid(861917e3506e22c479f1a3dd0331c29d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a34af9b47228e4e3a43b075d8340500d') in 0.001497 seconds - Import took 0.003959 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000163 seconds. - path: Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset - artifactKey: Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfigs/MeleeSmallDamage.asset using Guid(a116d916027f0084c95f421e6398e3a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56e9c6924c65f7c285cc1b9850863325') in 0.001507 seconds - Import took 0.003978 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.789138 seconds. - path: Assets/Scripts/Configs/BattleConfigs - artifactKey: Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/BattleConfigs using Guid(e7f3193a74c328e458d9f0e38c6f7a13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '159c939416d92be392de3edaa27fe508') in 0.000965 seconds - Import took 0.003532 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.086333 seconds. - path: Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset - artifactKey: Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/BattleConfigs/FirstBattle.asset using Guid(5ecf77a7ffbea54479cfcd94f4314069) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5926cc848cd7babe63ca6b07dfe5f18a') in 0.002539 seconds - Import took 0.005038 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.488269 seconds. - path: Assets/Scripts/Configs/PlayerConfigs - artifactKey: Guid(94e94f1664dbb89438aa007b964597d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/PlayerConfigs using Guid(94e94f1664dbb89438aa007b964597d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a39878dbb3ef9762da9d4aac82cb193') in 0.001036 seconds - Import took 0.003479 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.075047 seconds. - path: Assets/Scripts/Configs/PlayerConfigs/FirstPlayer.asset - artifactKey: Guid(579cce6536370d24c85894c163bf61d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/PlayerConfigs/FirstPlayer.asset using Guid(579cce6536370d24c85894c163bf61d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78668a870113a7d4a6f8d8bdaa8365c1') in 0.001575 seconds - Import took 0.003899 seconds . - -======================================================================== -Received Import Request. - Time since last request: 150.794755 seconds. - path: Assets/Scripts/Configs/EquipmentConfig/HatConfig.cs - artifactKey: Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig/HatConfig.cs using Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '654e5c97176009965a727fed750bcffb') in 0.002607 seconds - Import took 0.005638 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001235 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.738 seconds -Domain Reload Profiling: - ReloadAssembly (739ms) - BeginReloadAssembly (100ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (593ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (151ms) - 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 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.0 MB. -System memory in use after: 94.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2567. -Total: 1.937200 ms (FindLiveObjects: 0.123600 ms CreateObjectMapping: 0.046700 ms MarkObjects: 1.754300 ms DeleteObjects: 0.011800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 55.296042 seconds. - path: Assets/Scripts/Configs/EquipmentConfig/HatConfig.cs - artifactKey: Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig/HatConfig.cs using Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8141561018f880be6a7b36d973a8ebfa') in 0.004191 seconds - Import took 0.006818 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001174 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.679 seconds -Domain Reload Profiling: - ReloadAssembly (679ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (552ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (207ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (138ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2569. -Total: 2.140900 ms (FindLiveObjects: 0.127100 ms CreateObjectMapping: 0.042700 ms MarkObjects: 1.954400 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001187 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.715 seconds -Domain Reload Profiling: - ReloadAssembly (716ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (575ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (145ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2571. -Total: 2.050800 ms (FindLiveObjects: 0.122900 ms CreateObjectMapping: 0.042500 ms MarkObjects: 1.871400 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 72.820379 seconds. - path: Assets/Scripts/Configs/EquipmentConfig.cs - artifactKey: Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig.cs using Guid(e99dbdebfc0206140add44c501c04f23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ec5c214f1c2866f3309a118162db948') in 0.003600 seconds - Import took 0.006413 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001154 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.745 seconds -Domain Reload Profiling: - ReloadAssembly (746ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (613ms) - LoadAssemblies (75ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2573. -Total: 1.960600 ms (FindLiveObjects: 0.142500 ms CreateObjectMapping: 0.042800 ms MarkObjects: 1.762900 ms DeleteObjects: 0.011800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 16.497708 seconds. - path: Assets/Scripts/Configs/BattleConfig.cs - artifactKey: Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/BattleConfig.cs using Guid(b33bbefb941268c4b8f526cc6ecc1eba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '413ed641904f78eca62b0c9b32930bda') in 0.003533 seconds - Import took 0.006067 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.754113 seconds. - path: Assets/Scripts/Configs/CardConfig.cs - artifactKey: Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/CardConfig.cs using Guid(9c4c6a3d3a1809644803be5d2cb70212) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd6ade8e92a2fb721756526ee9866561') in 0.001097 seconds - Import took 0.003768 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.335208 seconds. - path: Assets/Scripts/Configs/EnemyConfig.cs - artifactKey: Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EnemyConfig.cs using Guid(645278d0e61ccba4cb3d4445d9c3ef67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb1d8746fc2002040b03f3b5e0f60117') in 0.001339 seconds - Import took 0.003876 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001150 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.686 seconds -Domain Reload Profiling: - ReloadAssembly (687ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (567ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (204ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (135ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2575. -Total: 1.982000 ms (FindLiveObjects: 0.122200 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.803900 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 319.219788 seconds. - path: Assets/Scripts/Enemy - artifactKey: Guid(f1dc807a1231259428b7050d80cd4621) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy using Guid(f1dc807a1231259428b7050d80cd4621) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8937e923d858b0c0af47257ef06a91b') in 0.003552 seconds - Import took 0.006070 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001236 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.735 seconds -Domain Reload Profiling: - ReloadAssembly (736ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (600ms) - LoadAssemblies (72ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (140ms) - 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.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2577. -Total: 2.458300 ms (FindLiveObjects: 0.133800 ms CreateObjectMapping: 0.048800 ms MarkObjects: 2.259600 ms DeleteObjects: 0.014400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001289 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.712 seconds -Domain Reload Profiling: - ReloadAssembly (713ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (580ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (143ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2579. -Total: 2.505900 ms (FindLiveObjects: 0.133600 ms CreateObjectMapping: 0.068800 ms MarkObjects: 2.286500 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 122.961443 seconds. - path: Assets/Scripts/Configs/EquipmentConfig/Hat.asset - artifactKey: Guid(0c9cca1a41bc1304cb51498c1a0ef813) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig/Hat.asset using Guid(0c9cca1a41bc1304cb51498c1a0ef813) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '488b6922c7d3497880b2d25591839c2c') in 0.011694 seconds - Import took 0.014182 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001346 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.790 seconds -Domain Reload Profiling: - ReloadAssembly (791ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (647ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (207ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 1.990700 ms (FindLiveObjects: 0.123100 ms CreateObjectMapping: 0.039500 ms MarkObjects: 1.813300 ms DeleteObjects: 0.013900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002224 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.759 seconds -Domain Reload Profiling: - ReloadAssembly (759ms) - BeginReloadAssembly (102ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - EndReloadAssembly (603ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. -Total: 1.977800 ms (FindLiveObjects: 0.137900 ms CreateObjectMapping: 0.041500 ms MarkObjects: 1.771500 ms DeleteObjects: 0.025600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 40.521418 seconds. - path: Assets/Scripts/Configs/EquipmentConfig/EquipmentConfig.asset - artifactKey: Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig/EquipmentConfig.asset using Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f2d6bb6c66297e628c11c49ed92ea4a') in 0.009493 seconds - Import took 0.012219 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001754 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.685 seconds -Domain Reload Profiling: - ReloadAssembly (685ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (565ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (205ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (135ms) - 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 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.1 MB. -System memory in use after: 94.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2585. -Total: 1.923100 ms (FindLiveObjects: 0.135700 ms CreateObjectMapping: 0.044700 ms MarkObjects: 1.729500 ms DeleteObjects: 0.012400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 130.863124 seconds. - path: Assets/Prefabs - artifactKey: Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs using Guid(dbe8dd53cca2a5b4d9f554a483056b69) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4722b95463dd97ba4aa8d14403194875') in 0.012408 seconds - Import took 0.015550 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.260312 seconds. - path: Assets/Graphics - artifactKey: Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics using Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c78f3d8ddeda74415dd6ce63d344cd1') in 0.001130 seconds - Import took 0.003613 seconds . - -======================================================================== -Received Import Request. - Time since last request: 12.286269 seconds. - path: Assets/Graphics/Equipment - artifactKey: Guid(27453ed8e60a2a649920539952a03f7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Equipment using Guid(27453ed8e60a2a649920539952a03f7c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3424871d285f5ca3a1ebbafa23ba3561') in 0.001187 seconds - Import took 0.003728 seconds . - -======================================================================== -Received Import Request. - Time since last request: 35.826035 seconds. - path: Assets/Scripts/Configs/EquipmentConfig/Helmet.asset - artifactKey: Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfig/Helmet.asset using Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '517cd07e793d9b695a4b9b4f07d79d89') in 0.007673 seconds - Import took 0.010133 seconds . - -======================================================================== -Received Import Request. - Time since last request: 41.241919 seconds. - path: Assets/Graphics/Equipment/kisspng-united-states-vietnam-war-helmet-soldier-army-soldier-helmet-5a689d4241be59.1724275015168054422693.png - artifactKey: Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Equipment/kisspng-united-states-vietnam-war-helmet-soldier-army-soldier-helmet-5a689d4241be59.1724275015168054422693.png using Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41c7034991969afcf7a568396f4d1827') in 0.069447 seconds - Import took 0.071962 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.076066 seconds. - path: Assets/Graphics/Enemies/AttackIcons/230218.png - artifactKey: Guid(993fdba9d116dba4bacdee2d29d33f04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/AttackIcons/230218.png using Guid(993fdba9d116dba4bacdee2d29d33f04) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8afdcd7a4e4fe9cf35d4ce430b0d8203') in 0.023580 seconds - Import took 0.026345 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000174 seconds. - path: Assets/Graphics/CardIcons/Energy.png - artifactKey: Guid(11194064875365e48be6ed64b065cb41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/CardIcons/Energy.png using Guid(11194064875365e48be6ed64b065cb41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc4892d5f4f487b012279e89b9409d0f') in 0.024610 seconds - Import took 0.027046 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000140 seconds. - path: Assets/Graphics/Player/ArmorShieldUI.png - artifactKey: Guid(7ab8624721af8974b9d81950d6603da1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Player/ArmorShieldUI.png using Guid(7ab8624721af8974b9d81950d6603da1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69b793eb8c5bc1699d227a33e3c33e56') in 0.010925 seconds - Import took 0.013351 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000180 seconds. - path: Assets/Graphics/CardIcons/Health.png - artifactKey: Guid(8e806042cc9fab349a847987c076f85d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/CardIcons/Health.png using Guid(8e806042cc9fab349a847987c076f85d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '901bf9ffc789f492a0b0eeaa2596d632') in 0.009476 seconds - Import took 0.012194 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000151 seconds. - path: Assets/Graphics/Other/Markers.png - artifactKey: Guid(5f2cb20f1f8274c42a5d23c6d6237680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/Markers.png using Guid(5f2cb20f1f8274c42a5d23c6d6237680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8fcdd2d9a899710f3655ff4c8313240e') in 0.010387 seconds - Import took 0.012780 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.035430 seconds. - path: Assets/Graphics/Other/output-onlinepngtools (4).png - artifactKey: Guid(baeea79bd8960b44c8a956ac6aef5e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/output-onlinepngtools (4).png using Guid(baeea79bd8960b44c8a956ac6aef5e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67d94e642ff57fb3a0bbf6f172f669fe') in 0.020525 seconds - Import took 0.023082 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000183 seconds. - path: Assets/Graphics/Enemies/AttackIcons/output-onlinepngtools (11).png - artifactKey: Guid(9c3fd8d256ec8eb4181e171ceea55452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/AttackIcons/output-onlinepngtools (11).png using Guid(9c3fd8d256ec8eb4181e171ceea55452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca2e5066092fde95ba217c0835e7b899') in 0.022334 seconds - Import took 0.024758 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.034808 seconds. - path: Assets/Graphics/CardIcons/Pistol.png - artifactKey: Guid(49fd699074bfe8742b2664b5fd5b5396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/CardIcons/Pistol.png using Guid(49fd699074bfe8742b2664b5fd5b5396) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3202d3ec86bce99c82b8340153c62078') in 0.012828 seconds - Import took 0.015444 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000132 seconds. - path: Assets/Graphics/Player/Player.png - artifactKey: Guid(1e18a24cab2bb1b4e8c362f1968067b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Player/Player.png using Guid(1e18a24cab2bb1b4e8c362f1968067b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'adfbdc6fa1ca110b9217d9999effc9b3') in 0.010166 seconds - Import took 0.013312 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.235500 seconds. - path: Assets/Graphics/Enemies/Shaman.png - artifactKey: Guid(ec4a4ccf9452e07458fc2bbbe68f380a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Shaman.png using Guid(ec4a4ccf9452e07458fc2bbbe68f380a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3f9e888cf7f19f12373355ffa0244e1') in 0.015406 seconds - Import took 0.017891 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000216 seconds. - path: Assets/Graphics/Enemies/Snake.png - artifactKey: Guid(3cd50817f068be2499e7e3509dc6c1e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Snake.png using Guid(3cd50817f068be2499e7e3509dc6c1e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dfe8736fa88673dde01a6bf7de34066c') in 0.009179 seconds - Import took 0.011490 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001152 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.753 seconds -Domain Reload Profiling: - ReloadAssembly (753ms) - BeginReloadAssembly (100ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (36ms) - EndReloadAssembly (607ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (145ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2106 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2604. -Total: 2.071600 ms (FindLiveObjects: 0.145900 ms CreateObjectMapping: 0.051300 ms MarkObjects: 1.848600 ms DeleteObjects: 0.024900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 73.607570 seconds. - path: Assets/Scripts/Configs/EquipmentConfigs - artifactKey: Guid(3d5fcd10a314d384a842c336d3fcfd16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfigs using Guid(3d5fcd10a314d384a842c336d3fcfd16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0d569858b296ba4780fdf7564e87907') in 0.003442 seconds - Import took 0.006078 seconds . - -======================================================================== -Received Import Request. - Time since last request: 10.913968 seconds. - path: Assets/Scripts/Enemy/LibraryTurnMethods.cs - artifactKey: Guid(b3ffd201925e0e64b9acf27bad35844d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Enemy/LibraryTurnMethods.cs using Guid(b3ffd201925e0e64b9acf27bad35844d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e687212afca87271cff03535b549cda9') in 0.001136 seconds - Import took 0.003685 seconds . - -======================================================================== -Received Import Request. - Time since last request: 26.501144 seconds. - path: Assets/Scripts/Equipment - artifactKey: Guid(2d7109c8321aa97469d6c3bea0878c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment using Guid(2d7109c8321aa97469d6c3bea0878c1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '903f15274c81a51b66df9829da1689ad') in 0.001274 seconds - Import took 0.003985 seconds . - -======================================================================== -Received Import Request. - Time since last request: 10.297038 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '288d18807a4cfac3eb7ee9e1c3f1b486') in 0.000924 seconds - Import took 0.003796 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001279 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.764 seconds -Domain Reload Profiling: - ReloadAssembly (765ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (638ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.1 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. -Total: 2.241800 ms (FindLiveObjects: 0.166400 ms CreateObjectMapping: 0.048300 ms MarkObjects: 2.007800 ms DeleteObjects: 0.018300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 70.591132 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '410e05af144db18144314947667f6d58') in 0.004423 seconds - Import took 0.007466 seconds . - -======================================================================== -Received Import Request. - Time since last request: 74.879427 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9c8b53c85def1222d1197253495ad91') in 0.001000 seconds - Import took 0.003520 seconds . - -======================================================================== -Received Import Request. - Time since last request: 10.309666 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a0e2a142b86f9636f60da490de09117') in 0.000975 seconds - Import took 0.003567 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.524715 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34a09ced51af3307250d15a8822a695e') in 0.001088 seconds - Import took 0.003654 seconds . - -======================================================================== -Received Import Request. - Time since last request: 97.928886 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '994b883f5b97516126b34acc3dd77cb3') in 0.001053 seconds - Import took 0.003670 seconds . - -======================================================================== -Received Import Request. - Time since last request: 39.683214 seconds. - path: Assets/Prefabs/Enemy - artifactKey: Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy using Guid(903e667a5ca406d49a7980c001b6af85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7fce1d80a97414ba1c8e8727fb455b85') in 0.001279 seconds - Import took 0.004205 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.045824 seconds. - path: Assets/Prefabs/Enemy/Shaman.prefab - artifactKey: Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Shaman.prefab using Guid(32d0fb454e08ef24a80a73425416751b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee61e3d254574f83c2ceaba54834df5c') in 0.033127 seconds - Import took 0.035725 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000246 seconds. - path: Assets/Prefabs/Enemy/Snake.prefab - artifactKey: Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Snake.prefab using Guid(2634da93b26caf544937574a522f566a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37705036635ac14e6dec3edacbd9be5b') in 0.005371 seconds - Import took 0.007975 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000168 seconds. - path: Assets/Prefabs/Enemy/Zombie.prefab - artifactKey: Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Zombie.prefab using Guid(34091b333ae775a4e8248495b8cdae9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51c2d7f3a9443d89a9876a1e94ae79a1') in 0.004820 seconds - Import took 0.007425 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001269 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.738 seconds -Domain Reload Profiling: - ReloadAssembly (739ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - EndReloadAssembly (601ms) - LoadAssemblies (68ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (30ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2609. -Total: 2.035700 ms (FindLiveObjects: 0.123900 ms CreateObjectMapping: 0.046100 ms MarkObjects: 1.835900 ms DeleteObjects: 0.029000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001190 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.708 seconds -Domain Reload Profiling: - ReloadAssembly (709ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (589ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (203ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (133ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2107 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. -Total: 2.171200 ms (FindLiveObjects: 0.147900 ms CreateObjectMapping: 0.054300 ms MarkObjects: 1.942400 ms DeleteObjects: 0.025500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 83.463910 seconds. - path: Assets/Prefabs/Equipment - artifactKey: Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment using Guid(4f16d7c7cbc53f94c80d77ebe7afac19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '337921d9bb0811b74a3010dd25854eff') in 0.003421 seconds - Import took 0.005906 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001249 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.754 seconds -Domain Reload Profiling: - ReloadAssembly (755ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (634ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (147ms) - 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 2107 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.2 MB. -System memory in use after: 97.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. -Total: 1.989000 ms (FindLiveObjects: 0.127300 ms CreateObjectMapping: 0.046000 ms MarkObjects: 1.800600 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 47.583302 seconds. - path: Assets/Scripts/Equipment/Equipment.cs - artifactKey: Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Equipment/Equipment.cs using Guid(dd65fdd5313c39f4088de50739b78266) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '883d18c2d3704b8c50ae6cb7e16178d6') in 0.003122 seconds - Import took 0.005602 seconds . - -======================================================================== -Received Import Request. - Time since last request: 32.466678 seconds. - path: Assets/Prefabs/Cards - artifactKey: Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards using Guid(53ea0b7335cdd21469dc3165d732f2ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9137cc1dfb62f08ed4a20ec7765ef2b') in 0.001280 seconds - Import took 0.003910 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.053087 seconds. - path: Assets/Prefabs/Cards/AddStamina.prefab - artifactKey: Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/AddStamina.prefab using Guid(cef8186f91858aa43ac1d7dd281ecaec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '836a4204ef1c2a800f26f1144e998584') in 0.024153 seconds - Import took 0.026654 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000253 seconds. - path: Assets/Prefabs/Cards/SmallHealing.prefab - artifactKey: Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallHealing.prefab using Guid(4a71400765e99464aa6e72caa20d2a07) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '170835f9ba3e5d0e34b319ee29c82657') in 0.004067 seconds - Import took 0.006524 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000185 seconds. - path: Assets/Prefabs/Cards/SmallArmor.prefab - artifactKey: Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/SmallArmor.prefab using Guid(888b5256d068ffe479a1b48633842ad4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '147b76f669bc3d2f3f0bb55cb45cf582') in 0.003540 seconds - Import took 0.006196 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000172 seconds. - path: Assets/Prefabs/Cards/BigHealing.prefab - artifactKey: Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/BigHealing.prefab using Guid(0d2efa65672e3534cbd062025129b645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4027ed1be40697915c543447896a33de') in 0.004242 seconds - Import took 0.006798 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000130 seconds. - path: Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab - artifactKey: Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongSmallDamagePrefab.prefab using Guid(f4414f7ff83c0354186c32ac62c7044d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94c9a274eb0c0b80b199b8e7fdbedf07') in 0.003694 seconds - Import took 0.006244 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000127 seconds. - path: Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab - artifactKey: Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/MeleeSmallDamagePrefab.prefab using Guid(ea6cc1511161d304bb74f639b874fef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e2687ff9761a5d9bfab6bac2410c02e') in 0.003771 seconds - Import took 0.006396 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.000153 seconds. - path: Assets/Prefabs/Cards/LongBigDamagePrefab.prefab - artifactKey: Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/LongBigDamagePrefab.prefab using Guid(ae1ab462daf0a5c4ca40701af32d6f47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a9e3ca3173ed86afaf0e7e87ce0ce03') in 0.003769 seconds - Import took 0.006322 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.588150 seconds. - path: Assets/Prefabs/Cards/Standart - artifactKey: Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart using Guid(f7a728ee00e2164428f0d51ae86d8938) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd1e456ffc1d53380b85263f577168b1') in 0.001179 seconds - Import took 0.003715 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.059470 seconds. - path: Assets/Prefabs/Cards/Standart/Card.prefab - artifactKey: Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Cards/Standart/Card.prefab using Guid(7d06a9bec9705b64fac3381d9c611a91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03b38b6370a745baac45c0b9b3e70aeb') in 0.003310 seconds - Import took 0.005993 seconds . - -======================================================================== -Received Import Request. - Time since last request: 15.874694 seconds. - path: Assets/Prefabs/Equipment/Standart - artifactKey: Guid(c3c0114203a68f942bd139f60875b64d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Standart using Guid(c3c0114203a68f942bd139f60875b64d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77ae79960ed66697eebccd1b95200d51') in 0.001130 seconds - Import took 0.003603 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.646961 seconds. - path: Assets/Prefabs/Equipment/Standart/Standart.prefab - artifactKey: Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Standart/Standart.prefab using Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b940b640c65a94f0970d0ad85deae128') in 0.005246 seconds - Import took 0.007955 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.214900 seconds. - path: Assets/Prefabs/Enemy/Standart - artifactKey: Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart using Guid(5bf2052828ec09844bf21a6796d3aeac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1529c34e1a880297d4a2331e55551184') in 0.001276 seconds - Import took 0.003987 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.046433 seconds. - path: Assets/Prefabs/Enemy/Standart/Enemy_1.prefab - artifactKey: Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Enemy/Standart/Enemy_1.prefab using Guid(644f958e0b6df60408efa28ad8002e42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8680423878eb6997e084f14adf77fdab') in 0.009454 seconds - Import took 0.012037 seconds . - -======================================================================== -Received Import Request. - Time since last request: 23.998323 seconds. - path: Assets/Prefabs/Equipment/Standart/StandartEquipment.prefab - artifactKey: Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Standart/StandartEquipment.prefab using Guid(7e03dd6cad1cf0944acb124847528cd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3b1a0ec296b3a1fa85d0e75e384b6a7') in 0.005064 seconds - Import took 0.007585 seconds . - -======================================================================== -Received Import Request. - Time since last request: 24.622479 seconds. - path: Assets/Prefabs/Equipment/Helmet.prefab - artifactKey: Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Helmet.prefab using Guid(ca90993e80150994e905b83ffd525f53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '202e276b0152f114bd8bb81fd63fca03') in 0.005657 seconds - Import took 0.008280 seconds . - -======================================================================== -Received Import Request. - Time since last request: 48.635270 seconds. - path: Assets/Scenes - artifactKey: Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes using Guid(fb67c500aacab5e4e9d173bfe45e441f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '791bc1ef001bc0ccbb508d55d6874f17') in 0.001111 seconds - Import took 0.003652 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.352784 seconds. - path: Assets/Scenes/SampleSceneSettings.lighting - artifactKey: Guid(727470f1003b0d84ea84cdd280a59b2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/SampleSceneSettings.lighting using Guid(727470f1003b0d84ea84cdd280a59b2b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) LightingSettings: switching bake backend from 1 to 0. - -> (artifact id: '860199a7a027a568baa1353f38910526') in 0.002555 seconds - Import took 0.004984 seconds . - -======================================================================== -Received Import Request. - Time since last request: 17.758255 seconds. - path: Assets/Scenes/MainMenu.unity - artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/MainMenu.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ec8003b462cee805ff1209e92266e8f') in 0.001430 seconds - Import took 0.004052 seconds . - -======================================================================== -Received Import Request. - Time since last request: 31.427540 seconds. - path: Assets/Scripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3917d3560c767fdeb129fe3a0020c16a') in 0.001103 seconds - Import took 0.003877 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001266 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.827 seconds -Domain Reload Profiling: - ReloadAssembly (827ms) - BeginReloadAssembly (104ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (678ms) - LoadAssemblies (71ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (219ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2108 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2616. -Total: 1.987700 ms (FindLiveObjects: 0.133700 ms CreateObjectMapping: 0.044300 ms MarkObjects: 1.790900 ms DeleteObjects: 0.018000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 34.919362 seconds. - path: Assets/Scripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f65c6b30313fbd5ac96fd130242f1265') in 0.004628 seconds - Import took 0.007950 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001190 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.762 seconds -Domain Reload Profiling: - ReloadAssembly (762ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (630ms) - LoadAssemblies (69ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2108 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2618. -Total: 1.918000 ms (FindLiveObjects: 0.125600 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.721100 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 96.089475 seconds. - path: Assets/Scripts/MaunMenuScripts - artifactKey: Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts using Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15847fc613023fee15e7b7834d0531f6') in 0.004144 seconds - Import took 0.006910 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001307 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.777 seconds -Domain Reload Profiling: - ReloadAssembly (777ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (653ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (235ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (157ms) - 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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2108 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2620. -Total: 2.418000 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.043300 ms MarkObjects: 2.229100 ms DeleteObjects: 0.016100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 18.166631 seconds. - path: Assets/Scripts/MaunMenuScripts/StartLevel.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/StartLevel.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ce5edf8af7234590892ac9a06adec97') in 0.003843 seconds - Import took 0.007268 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001209 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.58 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.783 seconds -Domain Reload Profiling: - ReloadAssembly (783ms) - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (641ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (214ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2109 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2623. -Total: 1.968500 ms (FindLiveObjects: 0.121700 ms CreateObjectMapping: 0.041900 ms MarkObjects: 1.791100 ms DeleteObjects: 0.013000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 108.228825 seconds. - path: Assets/Scripts/MaunMenuScripts/SceneLoader.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d6d3c0370967cc374bac65a8caa3b6e') in 0.003707 seconds - Import took 0.006221 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001196 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.786 seconds -Domain Reload Profiling: - ReloadAssembly (787ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (656ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (135ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2626. -Total: 1.938800 ms (FindLiveObjects: 0.132600 ms CreateObjectMapping: 0.060200 ms MarkObjects: 1.733200 ms DeleteObjects: 0.012000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 12.489937 seconds. - path: Assets/Scripts/MaunMenuScripts/SceneLoader.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4017de04cb2dde99f608d336ae05486') in 0.003671 seconds - Import took 0.006365 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001268 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.775 seconds -Domain Reload Profiling: - ReloadAssembly (776ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (642ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (146ms) - 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 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2628. -Total: 1.972000 ms (FindLiveObjects: 0.127800 ms CreateObjectMapping: 0.043700 ms MarkObjects: 1.786500 ms DeleteObjects: 0.013000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 6.478579 seconds. - path: Assets/Scripts/MaunMenuScripts/StartLevel.cs - artifactKey: Guid(5cd291de841c236449fc6f27fdf89b8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/StartLevel.cs using Guid(5cd291de841c236449fc6f27fdf89b8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3cda3e573f867509bd1043d6de6c56c3') in 0.003035 seconds - Import took 0.005460 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001284 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.866 seconds -Domain Reload Profiling: - ReloadAssembly (867ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (729ms) - LoadAssemblies (76ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (208ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (258ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (174ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (5ms) - 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.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2109 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2630. -Total: 2.009200 ms (FindLiveObjects: 0.121400 ms CreateObjectMapping: 0.041600 ms MarkObjects: 1.821100 ms DeleteObjects: 0.024400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 118.225950 seconds. - path: Assets/Scripts/MaunMenuScripts/SceneLoader.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7c5c590ed8423a1bc89d0db2bd6d158') in 0.004389 seconds - Import took 0.007703 seconds . - -======================================================================== -Received Import Request. - Time since last request: 19.934949 seconds. - path: Assets/Scripts/MaunMenuScripts/SceneLoader.cs - artifactKey: Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SceneLoader.cs using Guid(d4ce3529c31929f42bea98b7e58d93de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '543978e2bc37326d628c55608396c83f') in 0.001284 seconds - Import took 0.004488 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001259 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.786 seconds -Domain Reload Profiling: - ReloadAssembly (786ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (648ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (142ms) - 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2109 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.3 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2632. -Total: 2.007000 ms (FindLiveObjects: 0.130500 ms CreateObjectMapping: 0.042600 ms MarkObjects: 1.820200 ms DeleteObjects: 0.013000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 55.283450 seconds. - path: Assets/Scenes/SampleScene.unity - artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/SampleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9201d7859ec7d2faebefa1305d9144e6') in 0.008856 seconds - Import took 0.011373 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.383847 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: 'a1e6c6fd1390aa94035de74bbe7a4d28') in 0.001421 seconds - Import took 0.004072 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001370 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.749 seconds -Domain Reload Profiling: - ReloadAssembly (750ms) - BeginReloadAssembly (72ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (639ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (148ms) - 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.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2109 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2634. -Total: 2.238100 ms (FindLiveObjects: 0.121900 ms CreateObjectMapping: 0.041000 ms MarkObjects: 2.059100 ms DeleteObjects: 0.015300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001229 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.773 seconds -Domain Reload Profiling: - ReloadAssembly (773ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (649ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (149ms) - 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 2109 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2636. -Total: 2.389300 ms (FindLiveObjects: 0.145200 ms CreateObjectMapping: 0.050900 ms MarkObjects: 2.166700 ms DeleteObjects: 0.025500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 183.793974 seconds. - path: Assets/Scripts/CanvasChanger.cs - artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3203d186f3da6b4ebcd80139295c4fc') in 0.003541 seconds - Import took 0.006700 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001269 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.836 seconds -Domain Reload Profiling: - ReloadAssembly (836ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (693ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.4 MB. -System memory in use after: 97.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2639. -Total: 2.519100 ms (FindLiveObjects: 0.229800 ms CreateObjectMapping: 0.080500 ms MarkObjects: 2.176200 ms DeleteObjects: 0.030800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 21.541734 seconds. - path: Assets/Scripts/CanvasChanger.cs - artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20bf05dbaf7a901b35c358fbc3fa2834') in 0.003655 seconds - Import took 0.006332 seconds . - -======================================================================== -Received Import Request. - Time since last request: 53.739381 seconds. - path: Assets/Scripts/CanvasChanger.cs - artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c46dc44a73be5da565ddb6a07114364e') in 0.001613 seconds - Import took 0.005338 seconds . - -======================================================================== -Received Import Request. - Time since last request: 23.069807 seconds. - path: Assets/Scripts/CanvasChanger.cs - artifactKey: Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/CanvasChanger.cs using Guid(7feed73df43e92845adff59e1a91f2d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb3d867ef4ce281fa5094581c8f28a6a') in 0.001237 seconds - Import took 0.004021 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001261 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.789 seconds -Domain Reload Profiling: - ReloadAssembly (789ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (659ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2641. -Total: 1.999400 ms (FindLiveObjects: 0.130200 ms CreateObjectMapping: 0.045700 ms MarkObjects: 1.808700 ms DeleteObjects: 0.013500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001273 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.801 seconds -Domain Reload Profiling: - ReloadAssembly (802ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (669ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (212ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (142ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2643. -Total: 2.025200 ms (FindLiveObjects: 0.122900 ms CreateObjectMapping: 0.040000 ms MarkObjects: 1.847900 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.001354 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.842 seconds -Domain Reload Profiling: - ReloadAssembly (842ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (703ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2645. -Total: 2.326100 ms (FindLiveObjects: 0.140400 ms CreateObjectMapping: 0.042300 ms MarkObjects: 2.127300 ms DeleteObjects: 0.015300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001154 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.792 seconds -Domain Reload Profiling: - ReloadAssembly (792ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (674ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (210ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (139ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2647. -Total: 2.019700 ms (FindLiveObjects: 0.125100 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.839200 ms DeleteObjects: 0.011800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001172 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.821 seconds -Domain Reload Profiling: - ReloadAssembly (822ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (703ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (202ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (217ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2649. -Total: 2.034500 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.043300 ms MarkObjects: 1.838400 ms DeleteObjects: 0.027000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001161 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.796 seconds -Domain Reload Profiling: - ReloadAssembly (796ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (665ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (138ms) - 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.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2651. -Total: 1.986200 ms (FindLiveObjects: 0.126300 ms CreateObjectMapping: 0.040000 ms MarkObjects: 1.794300 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001657 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.807 seconds -Domain Reload Profiling: - ReloadAssembly (807ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (666ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2653. -Total: 1.979300 ms (FindLiveObjects: 0.121700 ms CreateObjectMapping: 0.045000 ms MarkObjects: 1.798800 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001197 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.786 seconds -Domain Reload Profiling: - ReloadAssembly (787ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (650ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (206ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (138ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.5 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2655. -Total: 2.549900 ms (FindLiveObjects: 0.138200 ms CreateObjectMapping: 0.053800 ms MarkObjects: 2.329400 ms DeleteObjects: 0.027700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001409 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.864 seconds -Domain Reload Profiling: - ReloadAssembly (864ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (729ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (220ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (145ms) - 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 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2657. -Total: 2.082800 ms (FindLiveObjects: 0.138500 ms CreateObjectMapping: 0.045800 ms MarkObjects: 1.882200 ms DeleteObjects: 0.015300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001207 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.818 seconds -Domain Reload Profiling: - ReloadAssembly (818ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (690ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (7ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2659. -Total: 2.086500 ms (FindLiveObjects: 0.129800 ms CreateObjectMapping: 0.043900 ms MarkObjects: 1.898800 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001272 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.859 seconds -Domain Reload Profiling: - ReloadAssembly (860ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (732ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2661. -Total: 2.175100 ms (FindLiveObjects: 0.139000 ms CreateObjectMapping: 0.054900 ms MarkObjects: 1.965000 ms DeleteObjects: 0.015200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001264 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.871 seconds -Domain Reload Profiling: - ReloadAssembly (871ms) - BeginReloadAssembly (94ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (733ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (223ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (147ms) - 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 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2663. -Total: 2.325300 ms (FindLiveObjects: 0.137700 ms CreateObjectMapping: 0.048200 ms MarkObjects: 2.123900 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.001577 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.839 seconds -Domain Reload Profiling: - ReloadAssembly (840ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (712ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (217ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2110 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2665. -Total: 2.166000 ms (FindLiveObjects: 0.153400 ms CreateObjectMapping: 0.050800 ms MarkObjects: 1.945500 ms DeleteObjects: 0.015000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 1007.997365 seconds. - path: Assets/Graphics/Equipment/Helmet.png - artifactKey: Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Equipment/Helmet.png using Guid(1c5bb4d795a592b48a9500fdc8e9a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '996aa714b77b939f665e222f5da33950') in 0.042982 seconds - Import took 0.045662 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.344581 seconds. - path: Assets/Graphics/Other - artifactKey: Guid(963406e10cb08d748b2edcc8f65018d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other using Guid(963406e10cb08d748b2edcc8f65018d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3ce051457e668ed83d182fc92361481') in 0.001124 seconds - Import took 0.003827 seconds . - -======================================================================== -Received Import Request. - Time since last request: 14.941783 seconds. - path: Assets/Graphics/Other/0dc4be5ac4e76b1a46462c0e9a867c78.jpg - artifactKey: Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/0dc4be5ac4e76b1a46462c0e9a867c78.jpg using Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d591a2821c4dbaca14fa8a87f38741c') in 0.017374 seconds - Import took 0.019888 seconds . - -======================================================================== -Received Import Request. - Time since last request: 9.841903 seconds. - path: Assets/Graphics/Other/BackGround.jpg - artifactKey: Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/BackGround.jpg using Guid(ff90a3fa662e2924882fb7ebc5f06941) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cb699e093a9afc17cfd6fe07e6ab3c0') in 0.012441 seconds - Import took 0.014906 seconds . - -======================================================================== -Received Import Request. - Time since last request: 124.268094 seconds. - path: Assets/Graphics/Other/kisspng-grunge-clip-art-grunge-photo-frame-png-5ab18eba6d9d35.423106621521585850449.png - artifactKey: Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/kisspng-grunge-clip-art-grunge-photo-frame-png-5ab18eba6d9d35.423106621521585850449.png using Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a530f996e853de3dceb05b22ca3625a7') in 0.025573 seconds - Import took 0.028398 seconds . - -======================================================================== -Received Import Request. - Time since last request: 15.648008 seconds. - path: Assets/Graphics/Other/Frame.png - artifactKey: Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/Frame.png using Guid(d6607576b44d8544aa193b3c93c84130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4783bf34248ce11054ab3a89638f3d0') in 0.016237 seconds - Import took 0.018852 seconds . - -======================================================================== -Received Import Request. - Time since last request: 575.370518 seconds. - path: Assets/Graphics/Other/kisspng-vitruvian-man-the-creation-of-adam-vitruvian-man-5b215cc48629f7.3915026015289130925496.png - artifactKey: Guid(cbff014c4cf09684c84284e36be315ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/kisspng-vitruvian-man-the-creation-of-adam-vitruvian-man-5b215cc48629f7.3915026015289130925496.png using Guid(cbff014c4cf09684c84284e36be315ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dfea8013fe4bba36ab90edaf64ee6360') in 0.017819 seconds - Import took 0.021054 seconds . - -======================================================================== -Received Import Request. - Time since last request: 194.261673 seconds. - path: Assets/Graphics/Other/kisspng-picture-frame-clip-art-elegant-frame-cliparts-5a7648b371fe55.2063791415177012994669.png - artifactKey: Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/kisspng-picture-frame-clip-art-elegant-frame-cliparts-5a7648b371fe55.2063791415177012994669.png using Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc989a95519d5f9afd3bfb6812dfa858') in 0.046084 seconds - Import took 0.049480 seconds . - -======================================================================== -Received Import Request. - Time since last request: 19.783966 seconds. - path: Assets/Graphics/Other/Frame1.png - artifactKey: Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Other/Frame1.png using Guid(5c823983cfaec90459cde31d1c98f1a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4659fff6096cf37cd07f24369bb66024') in 0.041325 seconds - Import took 0.044726 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1701.012263 seconds. - path: Assets/Scripts/MaunMenuScripts/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c93c76c0b0ee95980ac0cc40b4edfd14') in 0.018433 seconds - Import took 0.021679 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.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.858 seconds -Domain Reload Profiling: - ReloadAssembly (858ms) - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (711ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2677. -Total: 2.036400 ms (FindLiveObjects: 0.129100 ms CreateObjectMapping: 0.043500 ms MarkObjects: 1.850800 ms DeleteObjects: 0.012100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 40.084686 seconds. - path: Assets/Scripts/MaunMenuScripts/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b5f4a70fee199f36cb9d259cc0b3308') in 0.003691 seconds - Import took 0.006524 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001242 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.811 seconds -Domain Reload Profiling: - ReloadAssembly (812ms) - BeginReloadAssembly (79ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (689ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (135ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2679. -Total: 1.991200 ms (FindLiveObjects: 0.131500 ms CreateObjectMapping: 0.050100 ms MarkObjects: 1.796800 ms DeleteObjects: 0.011700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 39.430064 seconds. - path: Assets/Scripts/MaunMenuScripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbb0f50e94ec17ebe82e34cd71b78084') in 0.004630 seconds - Import took 0.007643 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001281 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.825 seconds -Domain Reload Profiling: - ReloadAssembly (825ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (697ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.6 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2681. -Total: 2.024800 ms (FindLiveObjects: 0.126800 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.842900 ms DeleteObjects: 0.011600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 1148.727612 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81e139dd4415cf1538fb087ee00d2d57') in 0.027387 seconds - Import took 0.030770 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001175 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.815 seconds -Domain Reload Profiling: - ReloadAssembly (816ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (687ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (206ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (138ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2683. -Total: 2.180300 ms (FindLiveObjects: 0.155700 ms CreateObjectMapping: 0.052400 ms MarkObjects: 1.952000 ms DeleteObjects: 0.018700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001189 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.853 seconds -Domain Reload Profiling: - ReloadAssembly (853ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (725ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2685. -Total: 2.207700 ms (FindLiveObjects: 0.132500 ms CreateObjectMapping: 0.045400 ms MarkObjects: 1.998900 ms DeleteObjects: 0.026800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001251 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.847 seconds -Domain Reload Profiling: - ReloadAssembly (847ms) - BeginReloadAssembly (93ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (705ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2687. -Total: 2.224900 ms (FindLiveObjects: 0.129300 ms CreateObjectMapping: 0.046300 ms MarkObjects: 2.032800 ms DeleteObjects: 0.015100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001166 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.846 seconds -Domain Reload Profiling: - ReloadAssembly (846ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (724ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2689. -Total: 1.982000 ms (FindLiveObjects: 0.126400 ms CreateObjectMapping: 0.043200 ms MarkObjects: 1.799700 ms DeleteObjects: 0.012000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001194 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.831 seconds -Domain Reload Profiling: - ReloadAssembly (831ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (706ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (137ms) - 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 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2691. -Total: 2.109200 ms (FindLiveObjects: 0.135800 ms CreateObjectMapping: 0.044000 ms MarkObjects: 1.904900 ms DeleteObjects: 0.023700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001251 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.854 seconds -Domain Reload Profiling: - ReloadAssembly (854ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (719ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2693. -Total: 2.101400 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.047400 ms MarkObjects: 1.898900 ms DeleteObjects: 0.025400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001156 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.862 seconds -Domain Reload Profiling: - ReloadAssembly (863ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (735ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (140ms) - 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.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2695. -Total: 2.323900 ms (FindLiveObjects: 0.136000 ms CreateObjectMapping: 0.057000 ms MarkObjects: 2.087600 ms DeleteObjects: 0.042400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001209 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.846 seconds -Domain Reload Profiling: - ReloadAssembly (846ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (716ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (211ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2697. -Total: 2.226100 ms (FindLiveObjects: 0.125400 ms CreateObjectMapping: 0.043500 ms MarkObjects: 2.042800 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.001274 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.856 seconds -Domain Reload Profiling: - ReloadAssembly (856ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (731ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (135ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2699. -Total: 2.485600 ms (FindLiveObjects: 0.171400 ms CreateObjectMapping: 0.061700 ms MarkObjects: 2.223400 ms DeleteObjects: 0.028100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001330 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.872 seconds -Domain Reload Profiling: - ReloadAssembly (872ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (744ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (187ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (141ms) - 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 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2701. -Total: 2.335500 ms (FindLiveObjects: 0.130300 ms CreateObjectMapping: 0.068500 ms MarkObjects: 2.122500 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001179 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.849 seconds -Domain Reload Profiling: - ReloadAssembly (850ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (728ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (200ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (131ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.7 MB. -System memory in use after: 97.8 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2703. -Total: 1.969200 ms (FindLiveObjects: 0.132400 ms CreateObjectMapping: 0.046800 ms MarkObjects: 1.776700 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 990.535297 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2b20f1a7e3248119cc0b8e902cbfe20') in 0.028334 seconds - Import took 0.031238 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.898048 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd9624f32c5b267cc478cd31b005a77c') in 0.009007 seconds - Import took 0.012474 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.829772 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6076290237c3c7abdd5d0d91d066da01') in 0.005213 seconds - Import took 0.007770 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.623528 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33f6bf48f8a1f32172c2f14de8e6782a') in 0.005554 seconds - Import took 0.008100 seconds . - -======================================================================== -Received Import Request. - Time since last request: 11.557564 seconds. - path: Assets/Graphics/Enemies/Zombie.png - artifactKey: Guid(aab1740fef9fe4145aef437cf6873127) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Enemies/Zombie.png using Guid(aab1740fef9fe4145aef437cf6873127) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03c4002cfb36afd12e76e3a3200ca5b1') in 0.032768 seconds - Import took 0.035459 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.007146 seconds. - path: Assets/Graphics/CardIcons/Sword.png - artifactKey: Guid(81903c5799d202f458fd2fa30bb13cd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/CardIcons/Sword.png using Guid(81903c5799d202f458fd2fa30bb13cd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c79c4f2a13aba8982c1a0be2b69c8e5c') in 0.009615 seconds - Import took 0.012567 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.703088 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82c0e1017bef88d6e27fbaf722ef1a2a') in 0.005824 seconds - Import took 0.008462 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.736477 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6119ed0cad6bda46c1cbb7bdf35e143') in 0.005997 seconds - Import took 0.008769 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.235028 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9771c9c60628c256c5f2f1e63bb1e051') in 0.005699 seconds - Import took 0.008563 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.035806 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29bea862175cf968099cfb2cd1f0c940') in 0.005898 seconds - Import took 0.008891 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.857044 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74f755d3fbf04d1c9cfc5250a2c0b74f') in 0.005814 seconds - Import took 0.008662 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.855485 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ebbf25f2e42febd36c2dfd6674acf8e') in 0.005640 seconds - Import took 0.008498 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.291958 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd25de149f787d24094ae692fec332fe4') in 0.005416 seconds - Import took 0.008200 seconds . - -======================================================================== -Received Import Request. - Time since last request: 33.107663 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa7e331e0a7230bd0d5e29c7e1833231') in 0.005920 seconds - Import took 0.008907 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.803583 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd908da4802e1a2e6c8b8692f0b73c084') in 0.006352 seconds - Import took 0.009295 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.812530 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '50e92e299988b3f9ffa629db68f5d79e') in 0.005990 seconds - Import took 0.008872 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.117158 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84b99db0d8793847fe0188dd9e44ff26') in 0.005616 seconds - Import took 0.008543 seconds . - -======================================================================== -Received Import Request. - Time since last request: 30.225585 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23d8f0cb67135d2082be8a2eef509a43') in 0.006227 seconds - Import took 0.009135 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.265888 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53c678805d1b7c8458eca0c41fce95b8') in 0.005137 seconds - Import took 0.007798 seconds . - -======================================================================== -Received Import Request. - Time since last request: 340.847914 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4aff280b380b54fe7ae61f1daa334e3') in 0.006271 seconds - Import took 0.009588 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001210 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.849 seconds -Domain Reload Profiling: - ReloadAssembly (850ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (731ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (137ms) - 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 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2710. -Total: 2.044900 ms (FindLiveObjects: 0.145000 ms CreateObjectMapping: 0.046200 ms MarkObjects: 1.835300 ms DeleteObjects: 0.017800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001246 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.854 seconds -Domain Reload Profiling: - ReloadAssembly (854ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (723ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (205ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (137ms) - 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.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2712. -Total: 2.094400 ms (FindLiveObjects: 0.141800 ms CreateObjectMapping: 0.045500 ms MarkObjects: 1.881200 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001390 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.939 seconds -Domain Reload Profiling: - ReloadAssembly (940ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (819ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (252ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2714. -Total: 2.242000 ms (FindLiveObjects: 0.161800 ms CreateObjectMapping: 0.049200 ms MarkObjects: 2.015600 ms DeleteObjects: 0.014600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001281 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.928 seconds -Domain Reload Profiling: - ReloadAssembly (928ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (803ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (191ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2716. -Total: 2.513500 ms (FindLiveObjects: 0.148900 ms CreateObjectMapping: 0.046900 ms MarkObjects: 2.297900 ms DeleteObjects: 0.018400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001249 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.894 seconds -Domain Reload Profiling: - ReloadAssembly (894ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (779ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (224ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (152ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.0 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2718. -Total: 2.149400 ms (FindLiveObjects: 0.140400 ms CreateObjectMapping: 0.047500 ms MarkObjects: 1.935000 ms DeleteObjects: 0.025600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001282 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.953 seconds -Domain Reload Profiling: - ReloadAssembly (953ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (821ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (238ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (69ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.1 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2720. -Total: 2.029800 ms (FindLiveObjects: 0.157400 ms CreateObjectMapping: 0.048000 ms MarkObjects: 1.811200 ms DeleteObjects: 0.012200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001283 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.927 seconds -Domain Reload Profiling: - ReloadAssembly (928ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (795ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 97.9 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2722. -Total: 2.174200 ms (FindLiveObjects: 0.139600 ms CreateObjectMapping: 0.049800 ms MarkObjects: 1.946900 ms DeleteObjects: 0.037000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001239 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.927 seconds -Domain Reload Profiling: - ReloadAssembly (927ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (799ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (214ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2724. -Total: 2.410700 ms (FindLiveObjects: 0.148500 ms CreateObjectMapping: 0.052000 ms MarkObjects: 2.183600 ms DeleteObjects: 0.025700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001118 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.887 seconds -Domain Reload Profiling: - ReloadAssembly (888ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (770ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2726. -Total: 2.620200 ms (FindLiveObjects: 0.148800 ms CreateObjectMapping: 0.054300 ms MarkObjects: 2.399100 ms DeleteObjects: 0.017100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001500 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.929 seconds -Domain Reload Profiling: - ReloadAssembly (929ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (798ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (217ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (142ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2728. -Total: 2.462400 ms (FindLiveObjects: 0.178100 ms CreateObjectMapping: 0.053700 ms MarkObjects: 2.214500 ms DeleteObjects: 0.015000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001289 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.887 seconds -Domain Reload Profiling: - ReloadAssembly (887ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (769ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2730. -Total: 2.208900 ms (FindLiveObjects: 0.227000 ms CreateObjectMapping: 0.052400 ms MarkObjects: 1.916300 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 639.507269 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29162a41e38894ae57ed6513e965ffb9') in 0.025518 seconds - Import took 0.027986 seconds . - -======================================================================== -Received Import Request. - Time since last request: 11.436559 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b78cda37c945921765224936dfe06e3') in 0.007463 seconds - Import took 0.010297 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.239338 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe9e390f83dcdef8403e593832c9a0a5') in 0.006157 seconds - Import took 0.009148 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.872653 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ef26dde695d8e41fc90ca84d7c287e1') in 0.013139 seconds - Import took 0.015800 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.428788 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd673b84b87a33b8241d7629c2e0d7eed') in 0.005647 seconds - Import took 0.008422 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001137 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.949 seconds -Domain Reload Profiling: - ReloadAssembly (950ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (830ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (198ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (146ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2732. -Total: 2.453300 ms (FindLiveObjects: 0.144900 ms CreateObjectMapping: 0.054500 ms MarkObjects: 2.234300 ms DeleteObjects: 0.018200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001298 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.884 seconds -Domain Reload Profiling: - ReloadAssembly (885ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (768ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (205ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (134ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2111 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2734. -Total: 2.028100 ms (FindLiveObjects: 0.148600 ms CreateObjectMapping: 0.053900 ms MarkObjects: 1.812000 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 45.067951 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0cf118be0c9cd92f142190a39ef44af') in 0.025150 seconds - Import took 0.027776 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.677215 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1a6aca47e74a17641135cf55c338bda') in 0.005435 seconds - Import took 0.008449 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.514083 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9bbdcc0fedac93fed35d718e0bd5c67e') in 0.005520 seconds - Import took 0.008228 seconds . - -======================================================================== -Received Import Request. - Time since last request: 10.869134 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '954068775bd1c85b9012e86236293953') in 0.005567 seconds - Import took 0.008886 seconds . - -======================================================================== -Received Import Request. - Time since last request: 902.798195 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a0c3f9732bf5458efb2762614ecacdbc') in 0.006564 seconds - Import took 0.010106 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.649117 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '892cb981149f0e0e5c29dd8bb80e8ff9') in 0.005407 seconds - Import took 0.008083 seconds . - -======================================================================== -Received Import Request. - Time since last request: 16.308980 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af15ed3d6be20c9f1594359266813769') in 0.005828 seconds - Import took 0.008534 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.869112 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a7f84d2790458b9f47b8ae6c80a029f') in 0.005774 seconds - Import took 0.008383 seconds . - -======================================================================== -Received Import Request. - Time since last request: 8.258212 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fec23ec49adf746ce039940b0f74d65') in 0.006106 seconds - Import took 0.008931 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.018186 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74b2f724e72feb529c717a065c4f7ded') in 0.005557 seconds - Import took 0.009146 seconds . - -======================================================================== -Received Import Request. - Time since last request: 4.616798 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c5285d7eca0d42a1a163ff9399fda07') in 0.006533 seconds - Import took 0.010170 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.609604 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79390acf0d8b696e84b854c3fc47fcf4') in 0.006545 seconds - Import took 0.010218 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1282.823083 seconds. - path: Assets/Scripts/MaunMenuScripts/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd09604983623fa3f7aadbd66328db0b') in 0.001558 seconds - Import took 0.004806 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001242 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.969 seconds -Domain Reload Profiling: - ReloadAssembly (969ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (832ms) - LoadAssemblies (67ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (206ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2737. -Total: 2.152200 ms (FindLiveObjects: 0.190200 ms CreateObjectMapping: 0.057300 ms MarkObjects: 1.888300 ms DeleteObjects: 0.015000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 24.932336 seconds. - path: Assets/Scripts/MaunMenuScripts/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MaunMenuScripts/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc8f150e907d43232ffaacccee5db7f6') in 0.004206 seconds - Import took 0.007039 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001273 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.907 seconds -Domain Reload Profiling: - ReloadAssembly (907ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (789ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2739. -Total: 2.065600 ms (FindLiveObjects: 0.148800 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.849200 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.001176 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.959 seconds -Domain Reload Profiling: - ReloadAssembly (959ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (822ms) - LoadAssemblies (70ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (200ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (214ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2741. -Total: 2.041100 ms (FindLiveObjects: 0.167500 ms CreateObjectMapping: 0.054800 ms MarkObjects: 1.802500 ms DeleteObjects: 0.015600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001326 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.910 seconds -Domain Reload Profiling: - ReloadAssembly (910ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (784ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (194ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (199ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (131ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.2 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2743. -Total: 2.025200 ms (FindLiveObjects: 0.147700 ms CreateObjectMapping: 0.050100 ms MarkObjects: 1.814600 ms DeleteObjects: 0.012100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 421.549822 seconds. - path: Assets/Scripts/MainMenuScripts - artifactKey: Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts using Guid(c49da3d37b4ae2f4fab585b14fdf371e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d8193dbbe4505ce753f8e4772f84a17') in 0.003401 seconds - Import took 0.006078 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001251 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.976 seconds -Domain Reload Profiling: - ReloadAssembly (976ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (838ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (136ms) - 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 2112 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.0 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2745. -Total: 2.260600 ms (FindLiveObjects: 0.147600 ms CreateObjectMapping: 0.051800 ms MarkObjects: 2.034500 ms DeleteObjects: 0.025500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 26.125725 seconds. - path: Assets/Scripts/MainMenuScripts/EquipmentButton.cs - artifactKey: Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/EquipmentButton.cs using Guid(a8d6de62cca58794f9c98838556168c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d560128a150aeb302728a24fe4d118b') in 0.003247 seconds - Import took 0.005917 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001286 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.995 seconds -Domain Reload Profiling: - ReloadAssembly (996ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (854ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - 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 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2748. -Total: 2.109300 ms (FindLiveObjects: 0.186000 ms CreateObjectMapping: 0.075700 ms MarkObjects: 1.833300 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001346 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.974 seconds -Domain Reload Profiling: - ReloadAssembly (974ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (857ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (199ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (160ms) - 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.56 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2750. -Total: 2.367200 ms (FindLiveObjects: 0.153700 ms CreateObjectMapping: 0.052100 ms MarkObjects: 2.145500 ms DeleteObjects: 0.015000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001319 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.930 seconds -Domain Reload Profiling: - ReloadAssembly (930ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (797ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (136ms) - 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2752. -Total: 2.015600 ms (FindLiveObjects: 0.147900 ms CreateObjectMapping: 0.054100 ms MarkObjects: 1.800700 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 183.006169 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c4e73fb070b05ea962f904fd79042d0') in 0.029291 seconds - Import took 0.032377 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.026988 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '673a17fc9214a1b5d728158abb9196e7') in 0.005783 seconds - Import took 0.008463 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.444740 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '481dd6b4baa19f233618c86c22e3e47a') in 0.005604 seconds - Import took 0.008394 seconds . - -======================================================================== -Received Import Request. - Time since last request: 3.257483 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '66dd8cdfdc4e0e9b376e9042ee0bf4ed') in 0.005586 seconds - Import took 0.008193 seconds . - -======================================================================== -Received Import Request. - Time since last request: 30.169931 seconds. - path: Assets/Scripts/Configs/EquipmentConfigs/Helmet.asset - artifactKey: Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfigs/Helmet.asset using Guid(cef48dfa004f93244ad5c6fedaede304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17f0306eabf1339bac767fb75d297c5e') in 0.001756 seconds - Import took 0.004256 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001250 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.953 seconds -Domain Reload Profiling: - ReloadAssembly (953ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (826ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (220ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (147ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2754. -Total: 2.259500 ms (FindLiveObjects: 0.155600 ms CreateObjectMapping: 0.053500 ms MarkObjects: 2.022400 ms DeleteObjects: 0.027000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 22.133667 seconds. - path: Assets/Scripts/Configs/EquipmentConfigs/Armor.asset - artifactKey: Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfigs/Armor.asset using Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '913742e9dbed453084c4a5609c570250') in 0.008922 seconds - Import took 0.011434 seconds . - -======================================================================== -Received Import Request. - Time since last request: 153.761273 seconds. - path: Assets/Graphics/Equipment/kisspng-fallout-3-fallout-brotherhood-of-steel-fallout-4-5cefba321186b1.8146242415592146420718.png - artifactKey: Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Equipment/kisspng-fallout-3-fallout-brotherhood-of-steel-fallout-4-5cefba321186b1.8146242415592146420718.png using Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f2f5a30a3d6afedf244e841091318b2') in 0.040735 seconds - Import took 0.043513 seconds . - -======================================================================== -Received Import Request. - Time since last request: 6.623916 seconds. - path: Assets/Graphics/Equipment/breastplate.png - artifactKey: Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Graphics/Equipment/breastplate.png using Guid(893fd2fe32210e149ab6fbf3bfd2ca4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9e270f37184ed2d2d5bc67c72d23314') in 0.045022 seconds - Import took 0.047482 seconds . - -======================================================================== -Received Import Request. - Time since last request: 22.444555 seconds. - path: Assets/Prefabs/Player/Player.prefab - artifactKey: Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Player/Player.prefab using Guid(c0b94d336afc615439f5c5ef9c7abb16) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b5ded4a78293cfa01b5c86f75e4502b') in 0.021966 seconds - Import took 0.024608 seconds . - -======================================================================== -Received Import Request. - Time since last request: 35.689179 seconds. - path: Assets/Prefabs/Equipment/StandartEquipment.prefab - artifactKey: Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/StandartEquipment.prefab using Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd8bd9dcbc0a571eabd0dbef0c8e0809') in 0.007917 seconds - Import took 0.010636 seconds . - -======================================================================== -Received Import Request. - Time since last request: 13.002429 seconds. - path: Assets/Prefabs/Equipment/Breastplate.prefab - artifactKey: Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/Equipment/Breastplate.prefab using Guid(ffde653421f3d064cbdfc3b4571a5a2a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a870f3749b67c92e81c1067a1542cedc') in 0.005274 seconds - Import took 0.007988 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001302 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.968 seconds -Domain Reload Profiling: - ReloadAssembly (968ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (834ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (212ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (140ms) - 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 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2759. -Total: 2.058700 ms (FindLiveObjects: 0.149300 ms CreateObjectMapping: 0.053100 ms MarkObjects: 1.837400 ms DeleteObjects: 0.018000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001202 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.966 seconds -Domain Reload Profiling: - ReloadAssembly (967ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (839ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2761. -Total: 2.326200 ms (FindLiveObjects: 0.142300 ms CreateObjectMapping: 0.047800 ms MarkObjects: 2.107400 ms DeleteObjects: 0.027900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001313 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.931 seconds -Domain Reload Profiling: - ReloadAssembly (931ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (816ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (173ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (211ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (139ms) - 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 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.3 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2763. -Total: 2.032700 ms (FindLiveObjects: 0.146200 ms CreateObjectMapping: 0.052000 ms MarkObjects: 1.820200 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 123.814663 seconds. - path: Assets/Scripts/Not used - artifactKey: Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Not used using Guid(c87b083632b1ca84d88b0fa786838031) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d4810abe11cf79f688e76ce5e5bb3c5') in 0.003659 seconds - Import took 0.006209 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.244922 seconds. - path: Assets/Scripts/MainMenuScripts/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a433d63a076affae5afe2e385b756b4') in 0.001048 seconds - Import took 0.003407 seconds . - -======================================================================== -Received Import Request. - Time since last request: 2.453463 seconds. - path: Assets/Scripts/MainMenuScripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc5cce080e9eaac338fdfb25187e5338') in 0.001028 seconds - Import took 0.003421 seconds . - -======================================================================== -Received Import Request. - Time since last request: 0.603680 seconds. - path: Assets/Scripts/MainMenuScripts/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4e284dc2f028a1744930790925865a4') in 0.000965 seconds - Import took 0.003323 seconds . - -======================================================================== -Received Import Request. - Time since last request: 40.105183 seconds. - path: Assets/Scripts/MainMenuScripts/SpawnButton.cs - artifactKey: Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/SpawnButton.cs using Guid(cd8d4ce0f427a174cb479d11b8f992b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c7867562a2efc1043a9052dd295bc0ee') in 0.001212 seconds - Import took 0.003971 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001233 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.950 seconds -Domain Reload Profiling: - ReloadAssembly (951ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (822ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (210ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (138ms) - 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 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.1 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2765. -Total: 1.989900 ms (FindLiveObjects: 0.148200 ms CreateObjectMapping: 0.055100 ms MarkObjects: 1.772400 ms DeleteObjects: 0.013500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001281 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.986 seconds -Domain Reload Profiling: - ReloadAssembly (987ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (864ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (210ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2767. -Total: 2.431600 ms (FindLiveObjects: 0.153400 ms CreateObjectMapping: 0.050500 ms MarkObjects: 2.208800 ms DeleteObjects: 0.018000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001248 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.001 seconds -Domain Reload Profiling: - ReloadAssembly (1002ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (879ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (201ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (217ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2769. -Total: 2.184800 ms (FindLiveObjects: 0.161900 ms CreateObjectMapping: 0.061300 ms MarkObjects: 1.946700 ms DeleteObjects: 0.014000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001336 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.926 seconds -Domain Reload Profiling: - ReloadAssembly (926ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (811ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (203ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (131ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2771. -Total: 2.007000 ms (FindLiveObjects: 0.154500 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.786900 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 211.344800 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab 1.prefab - artifactKey: Guid(d7542506ce3767741befcbd339b5beba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab 1.prefab using Guid(d7542506ce3767741befcbd339b5beba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f91dbcb49d3e63209f5c1d74a5d6e41') in 0.023452 seconds - Import took 0.026009 seconds . - -======================================================================== -Received Import Request. - Time since last request: 7.739350 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab 2.prefab - artifactKey: Guid(6ff8eb2d54c831049bcf6523ec99b90d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab 2.prefab using Guid(6ff8eb2d54c831049bcf6523ec99b90d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7668a07af8fd2639d0e7b66384cb14e') in 0.005353 seconds - Import took 0.007938 seconds . - -======================================================================== -Received Import Request. - Time since last request: 25.229465 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c769daf40760966515fdf5330e6a12fb') in 0.006395 seconds - Import took 0.008983 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001339 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.997 seconds -Domain Reload Profiling: - ReloadAssembly (998ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (863ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2773. -Total: 2.331000 ms (FindLiveObjects: 0.172200 ms CreateObjectMapping: 0.055500 ms MarkObjects: 2.086700 ms DeleteObjects: 0.015900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 33.819249 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7056329f988d7eb58c5110781fa653be') in 0.024569 seconds - Import took 0.027245 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.947466 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb9875fba43596b62e1f47ef49142647') in 0.005650 seconds - Import took 0.008313 seconds . - -======================================================================== -Received Import Request. - Time since last request: 5.114802 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd130e7c2a2662ddc16e58c9659867ab2') in 0.005304 seconds - Import took 0.007990 seconds . - -======================================================================== -Received Import Request. - Time since last request: 1.791801 seconds. - path: Assets/Prefabs/EquipmentButtonPrefab.prefab - artifactKey: Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/EquipmentButtonPrefab.prefab using Guid(f33090d3cfbeff54cb49cc789b59da51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5391f80be6f5a86b72f50d9165d14be4') in 0.005332 seconds - Import took 0.008043 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001282 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.015 seconds -Domain Reload Profiling: - ReloadAssembly (1016ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (878ms) - LoadAssemblies (64ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2775. -Total: 2.412500 ms (FindLiveObjects: 0.162500 ms CreateObjectMapping: 0.054000 ms MarkObjects: 2.167300 ms DeleteObjects: 0.027200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001155 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.966 seconds -Domain Reload Profiling: - ReloadAssembly (967ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (838ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (175ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (208ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (133ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (7ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (15ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2777. -Total: 2.018000 ms (FindLiveObjects: 0.152200 ms CreateObjectMapping: 0.053800 ms MarkObjects: 1.798700 ms DeleteObjects: 0.012400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001195 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.958 seconds -Domain Reload Profiling: - ReloadAssembly (959ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (833ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (206ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2779. -Total: 2.587000 ms (FindLiveObjects: 0.174900 ms CreateObjectMapping: 0.063300 ms MarkObjects: 2.334400 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.001177 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.991 seconds -Domain Reload Profiling: - ReloadAssembly (991ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (874ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (186ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (213ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2113 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.2 MB. -System memory in use after: 98.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2781. -Total: 2.259800 ms (FindLiveObjects: 0.217400 ms CreateObjectMapping: 0.063500 ms MarkObjects: 1.963200 ms DeleteObjects: 0.014900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 174.037714 seconds. - path: Assets/Scripts/MainMenuScripts/AddEquipment.cs - artifactKey: Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/AddEquipment.cs using Guid(2515a089f77897f4ea7e039866ece790) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd39167878311284a4478f57333f24c5c') in 0.003215 seconds - Import took 0.005709 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001301 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.965 seconds -Domain Reload Profiling: - ReloadAssembly (966ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (835ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.48 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: 98.2 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2784. -Total: 2.254300 ms (FindLiveObjects: 0.163700 ms CreateObjectMapping: 0.054500 ms MarkObjects: 2.018300 ms DeleteObjects: 0.016500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 160.789374 seconds. - path: Assets/Scripts/MainMenuScripts/EquipmentInfo.cs - artifactKey: Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/EquipmentInfo.cs using Guid(d09743e90e31cbf44b09c9355d4ba732) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e3436ad80e7ff96080104ef0c6bab92') in 0.004542 seconds - Import took 0.007870 seconds . - -======================================================================== -Received Import Request. - Time since last request: 80.728305 seconds. - path: Assets/Scripts/MainMenuScripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '860156895f2c427b9804d2f378bbb2f6') in 0.001209 seconds - Import took 0.003774 seconds . - -======================================================================== -Received Import Request. - Time since last request: 116.140870 seconds. - path: Assets/Scripts/MainMenuScripts/MainMenuScript.cs - artifactKey: Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/MainMenuScript.cs using Guid(6b702bb7d4d345f4a81b2a1cd9ddd648) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1a541320c9115529a28086db841e769') in 0.001027 seconds - Import took 0.003451 seconds . - -======================================================================== -Received Import Request. - Time since last request: 157.675540 seconds. - path: Assets/Scripts/DataScript.cs - artifactKey: Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DataScript.cs using Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '749d15f953c09275a034b634e5c2b648') in 0.001242 seconds - Import took 0.004224 seconds . - -======================================================================== -Received Import Request. - Time since last request: 17.204715 seconds. - path: Assets/Scripts/DataScript.cs - artifactKey: Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DataScript.cs using Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b24315be1935eceab1f52d2e80a047b4') in 0.001060 seconds - Import took 0.003822 seconds . - -======================================================================== -Received Import Request. - Time since last request: 23.023507 seconds. - path: Assets/Scripts/DataScript.cs - artifactKey: Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/DataScript.cs using Guid(807d1525e7105424dab9867a57255289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '109acd89d6b1a3f379ceffbf2e7e63ec') in 0.001068 seconds - Import took 0.003534 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001190 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.992 seconds -Domain Reload Profiling: - ReloadAssembly (993ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (871ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2787. -Total: 2.459600 ms (FindLiveObjects: 0.146400 ms CreateObjectMapping: 0.053500 ms MarkObjects: 2.244600 ms DeleteObjects: 0.014100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001159 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.961 seconds -Domain Reload Profiling: - ReloadAssembly (962ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (845ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (203ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (134ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2789. -Total: 2.281800 ms (FindLiveObjects: 0.148000 ms CreateObjectMapping: 0.051700 ms MarkObjects: 2.056000 ms DeleteObjects: 0.025200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001228 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 1.008 seconds -Domain Reload Profiling: - ReloadAssembly (1008ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (881ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (215ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (141ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2791. -Total: 2.357000 ms (FindLiveObjects: 0.168900 ms CreateObjectMapping: 0.054700 ms MarkObjects: 2.105100 ms DeleteObjects: 0.026900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001164 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.998 seconds -Domain Reload Profiling: - ReloadAssembly (998ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (878ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (207ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (136ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2793. -Total: 2.157900 ms (FindLiveObjects: 0.151900 ms CreateObjectMapping: 0.052500 ms MarkObjects: 1.939000 ms DeleteObjects: 0.013800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001207 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 1.065 seconds -Domain Reload Profiling: - ReloadAssembly (1065ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (933ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (184ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2795. -Total: 2.189900 ms (FindLiveObjects: 0.159900 ms CreateObjectMapping: 0.052700 ms MarkObjects: 1.949200 ms DeleteObjects: 0.027000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001198 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.984 seconds -Domain Reload Profiling: - ReloadAssembly (984ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (861ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (169ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (138ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2797. -Total: 2.133600 ms (FindLiveObjects: 0.164700 ms CreateObjectMapping: 0.051300 ms MarkObjects: 1.890000 ms DeleteObjects: 0.026600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001269 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 1.008 seconds -Domain Reload Profiling: - ReloadAssembly (1008ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (883ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (204ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (135ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2799. -Total: 2.136300 ms (FindLiveObjects: 0.148900 ms CreateObjectMapping: 0.052500 ms MarkObjects: 1.908900 ms DeleteObjects: 0.025400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001164 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.027 seconds -Domain Reload Profiling: - ReloadAssembly (1027ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (903ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (143ms) - 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 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2801. -Total: 2.074700 ms (FindLiveObjects: 0.157000 ms CreateObjectMapping: 0.054200 ms MarkObjects: 1.848700 ms DeleteObjects: 0.013800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001213 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.059 seconds -Domain Reload Profiling: - ReloadAssembly (1059ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (932ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (193ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2803. -Total: 2.636600 ms (FindLiveObjects: 0.161000 ms CreateObjectMapping: 0.057000 ms MarkObjects: 2.398700 ms DeleteObjects: 0.018700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001201 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.126 seconds -Domain Reload Profiling: - ReloadAssembly (1126ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (994ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (203ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (142ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2805. -Total: 2.058800 ms (FindLiveObjects: 0.148200 ms CreateObjectMapping: 0.051600 ms MarkObjects: 1.846600 ms DeleteObjects: 0.011400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002139 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 1.048 seconds -Domain Reload Profiling: - ReloadAssembly (1048ms) - BeginReloadAssembly (75ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (931ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (207ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (136ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2807. -Total: 2.443700 ms (FindLiveObjects: 0.164700 ms CreateObjectMapping: 0.052800 ms MarkObjects: 2.186800 ms DeleteObjects: 0.038600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001257 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 1.005 seconds -Domain Reload Profiling: - ReloadAssembly (1005ms) - BeginReloadAssembly (85ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (880ms) - LoadAssemblies (54ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (171ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (206ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (135ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2809. -Total: 2.157300 ms (FindLiveObjects: 0.165300 ms CreateObjectMapping: 0.065900 ms MarkObjects: 1.908300 ms DeleteObjects: 0.016400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001237 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.072 seconds -Domain Reload Profiling: - ReloadAssembly (1072ms) - BeginReloadAssembly (89ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (942ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (140ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.3 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2811. -Total: 2.158900 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.051600 ms MarkObjects: 1.902200 ms DeleteObjects: 0.025200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001315 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 1.062 seconds -Domain Reload Profiling: - ReloadAssembly (1063ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (931ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (212ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (138ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2813. -Total: 2.327000 ms (FindLiveObjects: 0.148100 ms CreateObjectMapping: 0.052600 ms MarkObjects: 2.103800 ms DeleteObjects: 0.021800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001287 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 1.041 seconds -Domain Reload Profiling: - ReloadAssembly (1041ms) - BeginReloadAssembly (73ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (929ms) - LoadAssemblies (53ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (189ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (208ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (137ms) - 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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2815. -Total: 2.607200 ms (FindLiveObjects: 0.163300 ms CreateObjectMapping: 0.053600 ms MarkObjects: 2.367200 ms DeleteObjects: 0.021700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001418 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.033 seconds -Domain Reload Profiling: - ReloadAssembly (1034ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (910ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (211ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (138ms) - 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 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2817. -Total: 2.108800 ms (FindLiveObjects: 0.156100 ms CreateObjectMapping: 0.056600 ms MarkObjects: 1.882000 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001229 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 1.102 seconds -Domain Reload Profiling: - ReloadAssembly (1102ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (968ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (221ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2819. -Total: 2.064300 ms (FindLiveObjects: 0.164800 ms CreateObjectMapping: 0.052200 ms MarkObjects: 1.821300 ms DeleteObjects: 0.025200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001458 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 1.067 seconds -Domain Reload Profiling: - ReloadAssembly (1067ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (947ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (178ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (33ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (156ms) - 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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2821. -Total: 2.302300 ms (FindLiveObjects: 0.168500 ms CreateObjectMapping: 0.193000 ms MarkObjects: 1.923100 ms DeleteObjects: 0.016800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001166 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.052 seconds -Domain Reload Profiling: - ReloadAssembly (1053ms) - BeginReloadAssembly (72ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (940ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2823. -Total: 2.237000 ms (FindLiveObjects: 0.157200 ms CreateObjectMapping: 0.055200 ms MarkObjects: 2.008600 ms DeleteObjects: 0.014900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001349 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.118 seconds -Domain Reload Profiling: - ReloadAssembly (1119ms) - BeginReloadAssembly (77ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (1000ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (145ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2825. -Total: 2.018800 ms (FindLiveObjects: 0.149300 ms CreateObjectMapping: 0.053700 ms MarkObjects: 1.790200 ms DeleteObjects: 0.025000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001771 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 1.088 seconds -Domain Reload Profiling: - ReloadAssembly (1088ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (963ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (170ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (218ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (148ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2827. -Total: 2.354300 ms (FindLiveObjects: 0.155600 ms CreateObjectMapping: 0.053000 ms MarkObjects: 2.115500 ms DeleteObjects: 0.029000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001616 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 1.168 seconds -Domain Reload Profiling: - ReloadAssembly (1168ms) - BeginReloadAssembly (78ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (1047ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (177ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (259ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (172ms) - ProcessInitializeOnLoadMethodAttributes (6ms) - AfterProcessingInitializeOnLoad (5ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2829. -Total: 2.231700 ms (FindLiveObjects: 0.160200 ms CreateObjectMapping: 0.053900 ms MarkObjects: 1.988800 ms DeleteObjects: 0.027700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001243 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.37 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.057 seconds -Domain Reload Profiling: - ReloadAssembly (1057ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (926ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (32ms) - SetupLoadedEditorAssemblies (207ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (137ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2831. -Total: 2.003500 ms (FindLiveObjects: 0.154100 ms CreateObjectMapping: 0.052300 ms MarkObjects: 1.783500 ms DeleteObjects: 0.012600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001173 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.118 seconds -Domain Reload Profiling: - ReloadAssembly (1118ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (21ms) - EndReloadAssembly (997ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (36ms) - SetupLoadedEditorAssemblies (220ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (145ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2833. -Total: 2.070100 ms (FindLiveObjects: 0.149300 ms CreateObjectMapping: 0.052100 ms MarkObjects: 1.856200 ms DeleteObjects: 0.011800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001167 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.130 seconds -Domain Reload Profiling: - ReloadAssembly (1130ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (1003ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (196ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (142ms) - 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 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2835. -Total: 2.169500 ms (FindLiveObjects: 0.159000 ms CreateObjectMapping: 0.053600 ms MarkObjects: 1.942100 ms DeleteObjects: 0.014200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001239 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.125 seconds -Domain Reload Profiling: - ReloadAssembly (1125ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (981ms) - LoadAssemblies (73ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (222ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (1ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (140ms) - 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 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2837. -Total: 2.135800 ms (FindLiveObjects: 0.174000 ms CreateObjectMapping: 0.053200 ms MarkObjects: 1.888500 ms DeleteObjects: 0.019300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001172 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.130 seconds -Domain Reload Profiling: - ReloadAssembly (1130ms) - BeginReloadAssembly (82ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (1006ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (181ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (206ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (135ms) - 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 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.6 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2839. -Total: 2.413100 ms (FindLiveObjects: 0.151100 ms CreateObjectMapping: 0.050200 ms MarkObjects: 2.198000 ms DeleteObjects: 0.013000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001179 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 1.080 seconds -Domain Reload Profiling: - ReloadAssembly (1080ms) - BeginReloadAssembly (84ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (954ms) - LoadAssemblies (56ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (31ms) - SetupLoadedEditorAssemblies (209ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (139ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 98.4 MB. -System memory in use after: 98.7 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2841. -Total: 2.266400 ms (FindLiveObjects: 0.162100 ms CreateObjectMapping: 0.058000 ms MarkObjects: 2.030700 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.001203 seconds. -Callback registration failed. Increase kMaxCallback. -Fatal Error! Callback registration failed. Increase kMaxCallback. -Crash!!! -SymInit: Symbol-SearchPath: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Mono;.;E:\Projects ñ#\Unity\omega;C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor;C:\Windows;C:\Windows\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 534, UserName: 'Admin' -OS-Version: 10.0.0 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Unity.exe:Unity.exe (00007FF68D770000), size: 135270400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.3.19.61751 -C:\Windows\SYSTEM32\ntdll.dll:ntdll.dll (00007FFB3C550000), size: 2052096 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1288 -C:\Windows\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFB3B4E0000), size: 778240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 -C:\Windows\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFB39E90000), size: 2916352 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Windows\System32\CRYPT32.dll:CRYPT32.dll (00007FFB3A200000), size: 1400832 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\System32\ucrtbase.dll:ucrtbase.dll (00007FFB39D40000), size: 1048576 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 -C:\Windows\System32\USER32.dll:USER32.dll (00007FFB3A9B0000), size: 1708032 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 -C:\Windows\System32\win32u.dll:win32u.dll (00007FFB3A360000), size: 139264 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFACC970000), size: 10215424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2020.2.0.0 -C:\Windows\System32\GDI32.dll:GDI32.dll (00007FFB3A840000), size: 176128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFAC90A0000), size: 43806720 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\optix.6.0.0.dll:optix.6.0.0.dll (00007FFADF0F0000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.0.0.0 -C:\Windows\System32\gdi32full.dll:gdi32full.dll (00007FFB3A390000), size: 1101824 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Windows\System32\msvcp_win.dll:msvcp_win.dll (00007FFB3A160000), size: 643072 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.789 -C:\Windows\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFB3B680000), size: 704512 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1052 -C:\Windows\System32\msvcrt.dll:msvcrt.dll (00007FFB3C440000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFACC830000), size: 1306624 (result: 0), SymType: '-deferred-', PDB: '' -C:\Windows\System32\SHELL32.dll:SHELL32.dll (00007FFB3BCF0000), size: 7618560 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Windows\System32\sechost.dll:sechost.dll (00007FFB3B790000), size: 634880 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 -C:\Windows\System32\WS2_32.dll:WS2_32.dll (00007FFB3A7D0000), size: 438272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\FreeImage.dll:FreeImage.dll (0000000180000000), size: 6582272 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.18.0.0 -C:\Windows\System32\RPCRT4.dll:RPCRT4.dll (00007FFB3A5F0000), size: 1220608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1288 -C:\Windows\System32\SHLWAPI.dll:SHLWAPI.dll (00007FFB3AF80000), size: 348160 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 -C:\Windows\System32\WLDAP32.dll:WLDAP32.dll (00007FFB3B730000), size: 352256 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\System32\ole32.dll:ole32.dll (00007FFB3AD70000), size: 1220608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFACC6A0000), size: 1609728 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFB09AF0000), size: 45056 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.0.1812.6001 -C:\Windows\System32\Normaliz.dll:Normaliz.dll (00007FFB3AF60000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\System32\combase.dll:combase.dll (00007FFB3B990000), size: 3493888 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 -C:\Windows\System32\IMM32.dll:IMM32.dll (00007FFB3B900000), size: 196608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\tbb.dll:tbb.dll (00007FFAC9030000), size: 413696 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2017.0.2016.1004 -C:\Windows\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFB3B060000), size: 4661248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1237 -C:\Windows\System32\cfgmgr32.dll:cfgmgr32.dll (00007FFB39E40000), size: 319488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 -C:\Windows\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFB29970000), size: 110592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\Windows\System32\bcrypt.dll:bcrypt.dll (00007FFB3A530000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1023 -C:\Windows\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFB3B830000), size: 839680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.985 -C:\Windows\System32\WINTRUST.dll:WINTRUST.dll (00007FFB39C30000), size: 393216 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 -C:\Windows\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFACC570000), size: 1200128 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 -C:\Windows\SYSTEM32\GLU32.dll:GLU32.dll (00007FFAE0B10000), size: 180224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 -C:\Windows\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFB298D0000), size: 577536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\Windows\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFB39080000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFB28530000), size: 978944 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 -C:\Windows\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFB277E0000), size: 679936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 12.0.40649.5 -C:\Windows\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFB31F50000), size: 1097728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\RadeonImageFilters.dll:RadeonImageFilters.dll (00007FFACC300000), size: 2535424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.1.0 -C:\Windows\SYSTEM32\WINMM.dll:WINMM.dll (00007FFB2B360000), size: 159744 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\HID.DLL:HID.DLL (00007FFB384E0000), size: 53248 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFACBA70000), size: 8978432 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.0 -C:\Windows\SYSTEM32\VERSION.dll:VERSION.dll (00007FFB343A0000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\WSOCK32.dll:WSOCK32.dll (00007FFB08A80000), size: 36864 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1 -C:\Windows\SYSTEM32\VCRUNTIME140_1.dll:VCRUNTIME140_1.dll (00007FFB29960000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 14.29.30133.0 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFADF070000), size: 483328 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 19.0.753.20342 -C:\Windows\SYSTEM32\Secur32.dll:Secur32.dll (00007FFB27440000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFB39B20000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL.dll:OpenRL.dll (0000020432ED0000), size: 12779520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 1.5.0.2907 -C:\Windows\SYSTEM32\MSVCP100.dll:MSVCP100.dll (0000000072380000), size: 622592 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.30319.1 -C:\Windows\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000072420000), size: 856064 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.30319.1 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\embree.dll:embree.dll (00007FFAC7AF0000), size: 16711680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.14.0.0 -C:\Windows\SYSTEM32\MSWSOCK.DLL:MSWSOCK.DLL (00007FFB393E0000), size: 434176 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (0000020433B20000), size: 61440 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.9.0.0 -C:\Windows\SYSTEM32\MSASN1.dll:MSASN1.dll (00007FFB39810000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\kernel.appcore.dll:kernel.appcore.dll (00007FFB37B40000), size: 73728 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFB3A4A0000), size: 532480 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 -C:\Windows\system32\uxtheme.dll:uxtheme.dll (00007FFB375C0000), size: 647168 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 -C:\Windows\System32\shcore.dll:shcore.dll (00007FFB3AEB0000), size: 708608 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Windows\SYSTEM32\windows.storage.dll:windows.storage.dll (00007FFB37D40000), size: 7946240 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1387 -C:\Windows\SYSTEM32\Wldp.dll:Wldp.dll (00007FFB39680000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\SYSTEM32\profapi.dll:profapi.dll (00007FFB39B70000), size: 126976 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.844 -C:\Windows\System32\clbcatq.dll:clbcatq.dll (00007FFB3A720000), size: 692224 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2001.12.10941.16384 -C:\Windows\System32\netprofm.dll:netprofm.dll (00007FFB358F0000), size: 253952 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 -C:\Windows\System32\npmproxy.dll:npmproxy.dll (00007FFB331F0000), size: 65536 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 -C:\Windows\System32\NSI.dll:NSI.dll (00007FFB3AEA0000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.610 -C:\Windows\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFB34A50000), size: 94208 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFB34800000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFB390D0000), size: 831488 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFB2F130000), size: 520192 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1348 -C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFB30E40000), size: 40960 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\Tools\astcenc-avx2.dll:astcenc-avx2.dll (00007FFAC8E60000), size: 557056 (result: 0), SymType: '-deferred-', PDB: '' -C:\Windows\SYSTEM32\d3d11.dll:d3d11.dll (00007FFB35B80000), size: 2506752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1202 -C:\Windows\SYSTEM32\dxgi.dll:dxgi.dll (00007FFB38520000), size: 999424 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 -C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_19c79fb6254e3b11\nvldumdx.dll:nvldumdx.dll (00007FFB2EA00000), size: 1073152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7212 -C:\Windows\SYSTEM32\cryptnet.dll:cryptnet.dll (00007FFB33290000), size: 200704 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.906 -C:\Windows\SYSTEM32\drvstore.dll:drvstore.dll (00007FFB30F00000), size: 1351680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\SYSTEM32\devobj.dll:devobj.dll (00007FFB399D0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 -C:\Windows\SYSTEM32\cryptbase.dll:cryptbase.dll (00007FFB395D0000), size: 49152 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\System32\imagehlp.dll:imagehlp.dll (00007FFB3A990000), size: 118784 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1415 -C:\Windows\SYSTEM32\CRYPTSP.dll:CRYPTSP.dll (00007FFB395E0000), size: 98304 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\system32\rsaenh.dll:rsaenh.dll (00007FFB38CF0000), size: 212992 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1052 -C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_19c79fb6254e3b11\nvwgf2umx.dll:nvwgf2umx.dll (00007FFAEDCC0000), size: 77619200 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.0.14.7212 -C:\Windows\system32\nvspcap64.dll:nvspcap64.dll (00007FFB0F210000), size: 2904064 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.24.0.126 -C:\Windows\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFB38A40000), size: 208896 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\dxcore.dll:dxcore.dll (00007FFB35250000), size: 241664 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFB2C0B0000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFB2C010000), size: 598016 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1081 -C:\Windows\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFB272E0000), size: 81920 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1320 -C:\Windows\system32\wbem\fastprox.dll:fastprox.dll (00007FFB26F60000), size: 1093632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\Windows\SYSTEM32\amsi.dll:amsi.dll (00007FFB2BE90000), size: 102400 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.746 -C:\Windows\SYSTEM32\USERENV.dll:USERENV.dll (00007FFB39AF0000), size: 188416 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.572 -C:\Program Files (x86)\Kaspersky Lab\Kaspersky Free 21.3\x64\antimalware_provider.dll:antimalware_provider.dll (00007FFB2BC60000), size: 2277376 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 30.587.0.880 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\cudart64_90.dll:cudart64_90.dll (00007FFAE0BD0000), size: 397312 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.14.11.9000 -C:\Windows\SYSTEM32\opencl.dll:opencl.dll (00007FFAC8B30000), size: 1482752 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 3.0.1.0 -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\radeonrays.dll:radeonrays.dll (00007FFAE0B40000), size: 552960 (result: 0), SymType: '-deferred-', PDB: '' -C:\Program Files\Unity\Hub\Editor\2020.3.19f1\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFAC4450000), size: 7790592 (result: 0), SymType: '-deferred-', PDB: '' -C:\Windows\System32\PSAPI.DLL:PSAPI.DLL (00007FFB3AF70000), size: 32768 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.546 -C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll:Microsoft.VisualStudio.Setup.Configuration.Native.dll (00007FFAC7230000), size: 327680 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 2.11.47.9733 -C:\Windows\SYSTEM32\PROPSYS.dll:PROPSYS.dll (00007FFB35420000), size: 1007616 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 7.0.19041.1023 -C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\comctl32.dll:comctl32.dll (00007FFB29F40000), size: 2727936 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 6.10.19041.1110 -C:\Windows\SYSTEM32\WindowsCodecs.dll:WindowsCodecs.dll (00007FFB33AE0000), size: 1785856 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 -C:\Windows\System32\thumbcache.dll:thumbcache.dll (00007FFB14510000), size: 417792 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1151 -C:\Windows\System32\MrmCoreR.dll:MrmCoreR.dll (00007FFB27600000), size: 1003520 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.1266 -C:\Windows\System32\iertutil.dll:iertutil.dll (00007FFB27B40000), size: 2818048 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 11.0.19041.1266 -C:\Windows\SYSTEM32\windows.staterepositorycore.dll:windows.staterepositorycore.dll (00007FFB29F20000), size: 69632 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.844 -C:\Windows\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFB32460000), size: 1982464 (result: 0), SymType: '-deferred-', PDB: '', fileVersion: 10.0.19041.867 - -========== OUTPUTTING STACK TRACE ================== - -0x00007FFB39EC4F69 (KERNELBASE) RaiseException -0x00007FF68FEFA15D (Unity) EditorMonoConsole::LogToConsoleImplementation -0x00007FF68FEFB0DA (Unity) EditorMonoConsole::LogToConsoleImplementation -0x00007FF691B23DAE (Unity) DebugStringToFilePostprocessedStacktrace -0x00007FF691B2335F (Unity) DebugStringToFile -0x00007FF68D9DBDD3 (Unity) CallbackArraySubBase::Register -0x00007FF6906EE559 (Unity) LoadDomainAndUserAssemblies -0x00007FF6906EEA0E (Unity) LoadUserAssemblies -0x00007FF690B65A28 (Unity) ::operator() -0x00007FF690C095F2 (Unity) asio::detail::completion_handler >::do_complete -0x00007FF690C0B750 (Unity) asio::detail::win_iocp_io_service::do_one -0x00007FF690C0EEDE (Unity) asio::io_service::run -0x00007FF690B920BB (Unity) RunAssetImportWorkerClientV2 -0x00007FF690B92110 (Unity) RunAssetImporterV2 -0x00007FF6900555B6 (Unity) Application::InitializeProject -0x00007FF690A01342 (Unity) WinMain -0x00007FF6928569B6 (Unity) __scrt_common_main_seh -0x00007FFB3B4F7034 (KERNEL32) BaseThreadInitThunk -0x00007FFB3C5A2651 (ntdll) RtlUserThreadStart - -========== END OF STACKTRACE =========== - -A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in: - * C:/Users/Admin/AppData/Local/Temp/Unity/Editor/Crashes diff --git a/Logs/AssetImportWorker1-prev.log b/Logs/AssetImportWorker1-prev.log new file mode 100644 index 00000000..c6e9266f --- /dev/null +++ b/Logs/AssetImportWorker1-prev.log @@ -0,0 +1,1234 @@ +Using pre-set license +Built from '2020.3/staging' branch; Version is '2020.3.19f1 (68f137dc9bbe) revision 6877495'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Home; OS build 19043.1466; Version 2009; 64bit' Language: 'ru' Physical Memory: 8029 MB +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 +AssetImportWorker1 +-projectPath +C:/Users/Dara/Documents/1/PO +-logFile +Logs/AssetImportWorker1.log +-srvPort +56111 +Successfully changed project path to: C:/Users/Dara/Documents/1/PO +C:/Users/Dara/Documents/1/PO +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 50.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2020.3.19f1 (68f137dc9bbe) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Users/Dara/Documents/1/PO/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce GTX 1650 (ID=0x1f99) + Vendor: + VRAM: 3962 MB + Driver: 30.0.14.9709 +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:56352 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll +Registered in 0.002639 seconds. +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 76.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 6.467 seconds +Domain Reload Profiling: + ReloadAssembly (6467ms) + BeginReloadAssembly (68ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (733ms) + LoadAssemblies (66ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (76ms) + BeforeProcessingInitializeOnLoad (19ms) + ProcessInitializeOnLoadAttributes (79ms) + ProcessInitializeOnLoadMethodAttributes (65ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.004311 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 45.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.590 seconds +Domain Reload Profiling: + ReloadAssembly (1591ms) + BeginReloadAssembly (238ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (53ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (18ms) + EndReloadAssembly (1285ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (508ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (46ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (358ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.17 seconds +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2137 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 96.2 MB. +System memory in use after: 96.3 MB. + +Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2577. +Total: 38.535300 ms (FindLiveObjects: 1.034100 ms CreateObjectMapping: 0.374500 ms MarkObjects: 36.992600 ms DeleteObjects: 0.131400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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/Scenes/Inventory.unity + artifactKey: Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Inventory.unity using Guid(c0f2ab0c52da4e04fa0f6cb87378dd5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0d7000a94b18808355647d433eb75c6') in 0.022548 seconds + Import took 0.027056 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004778 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.071 seconds +Domain Reload Profiling: + ReloadAssembly (1071ms) + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + EndReloadAssembly (883ms) + LoadAssemblies (87ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (293ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (338ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (87ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 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.756900 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.084600 ms MarkObjects: 2.452900 ms DeleteObjects: 0.016300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002634 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.024 seconds +Domain Reload Profiling: + ReloadAssembly (1025ms) + BeginReloadAssembly (119ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (833ms) + LoadAssemblies (83ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (299ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (295ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (20ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (182ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. +Total: 2.580800 ms (FindLiveObjects: 0.188000 ms CreateObjectMapping: 0.070400 ms MarkObjects: 2.307900 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.003086 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.976 seconds +Domain Reload Profiling: + ReloadAssembly (976ms) + BeginReloadAssembly (132ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (778ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (265ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2118 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2583. +Total: 2.827500 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.486000 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 Import Request. + Time since last request: 797.662663 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: 'cd7082adf5bb07b5131929f787129efb') in 0.056080 seconds + Import took 0.060930 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002254 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.089 seconds +Domain Reload Profiling: + ReloadAssembly (1089ms) + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (872ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (323ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (49ms) + SetupLoadedEditorAssemblies (294ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (85ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.44 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.4 MB. +System memory in use after: 94.5 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2586. +Total: 2.604700 ms (FindLiveObjects: 0.202200 ms CreateObjectMapping: 0.087400 ms MarkObjects: 2.300200 ms DeleteObjects: 0.013800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 432.683082 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: '6aa592217cfe8bf6e47a361ba38594a5') in 0.009048 seconds + Import took 0.014046 seconds . + +======================================================================== +Received Import Request. + Time since last request: 36.477349 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: '8a4589dbee056058daa7a81ca9d70bd3') in 0.004997 seconds + Import took 0.010068 seconds . + +======================================================================== +Received Import Request. + Time since last request: 30.283731 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: '13f03799bad48cbfca132b5c163e22f1') in 0.003112 seconds + Import took 0.007511 seconds . + +======================================================================== +Received Import Request. + Time since last request: 11.767021 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: '364307cd6f39311be8b0790209b0b555') in 0.004084 seconds + Import took 0.007608 seconds . + +======================================================================== +Received Import Request. + Time since last request: 32.976922 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: 'eb9ec9714052e8d39f53a5afa9228661') in 0.008907 seconds + Import took 0.012345 seconds . + +======================================================================== +Received Import Request. + Time since last request: 16.236944 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: '7881899972128dab96ff25685f026cd5') in 0.005051 seconds + Import took 0.009544 seconds . + +======================================================================== +Received Import Request. + Time since last request: 111.544293 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: '4af48612954d54a906f9cbc742036a3c') in 0.010732 seconds + Import took 0.015719 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6528.178831 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: '06c98ddbca0de5932d3bbb521a711add') in 0.008419 seconds + Import took 0.040297 seconds . + +======================================================================== +Received Import Request. + Time since last request: 241.328491 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: '64cffbd0777392773420826f39e24a0c') in 0.008323 seconds + Import took 0.013525 seconds . + +======================================================================== +Received Import Request. + Time since last request: 536.291473 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: 'e7bc78e638d9034dce58734d4d10b714') in 0.003390 seconds + Import took 0.010035 seconds . + +======================================================================== +Received Import Request. + Time since last request: 67.029603 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: '6a63def8e1dabb5ea38ffcd6c8cae3a4') in 0.004671 seconds + Import took 0.011052 seconds . + +======================================================================== +Received Import Request. + Time since last request: 179.526219 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: 'fd4b8e06192f70e4352431721f0f232e') in 0.006341 seconds + Import took 0.011206 seconds . + +======================================================================== +Received Import Request. + Time since last request: 13.504205 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: 'cce30209a9f3f21f6417ed9bc0292f4a') in 0.004589 seconds + Import took 0.008064 seconds . + +======================================================================== +Received Import Request. + Time since last request: 1.492749 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: 'efa6876c59e2d4ba45df834e5aa09523') in 0.003796 seconds + Import took 0.008212 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006795 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.246 seconds +Domain Reload Profiling: + ReloadAssembly (1253ms) + BeginReloadAssembly (228ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (36ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (97ms) + EndReloadAssembly (953ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (395ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (46ms) + SetupLoadedEditorAssemblies (295ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (7ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.62 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.4 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2588. +Total: 3.043100 ms (FindLiveObjects: 0.205300 ms CreateObjectMapping: 0.123400 ms MarkObjects: 2.698400 ms DeleteObjects: 0.015200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 482.088800 seconds. + path: Assets/Graphics + artifactKey: Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics using Guid(867d9666565b3a0499fda8648dea0771) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69da5b4fc77a5fac7cfff01a101f414a') in 0.012280 seconds + Import took 0.016028 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.596205 seconds. + path: Assets/TextMesh Pro + artifactKey: Guid(f54d1bd14bd3ca042bd867b519fee8cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/TextMesh Pro using Guid(f54d1bd14bd3ca042bd867b519fee8cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16b4cbde9565bf190136f1148817e1ea') in 0.008540 seconds + Import took 0.013104 seconds . + +======================================================================== +Received Import Request. + Time since last request: 14.456476 seconds. + path: Assets/Scripts/Configs/MissionConfigs + artifactKey: Guid(fa163f2f9747ec9418f19577175a653e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/MissionConfigs using Guid(fa163f2f9747ec9418f19577175a653e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56cb1e18995d71332d01bf060087c898') in 0.009086 seconds + Import took 0.014302 seconds . + +======================================================================== +Received Import Request. + Time since last request: 9.526204 seconds. + path: Assets/Scripts/Configs/MissionConfigs/FirstMission.asset + artifactKey: Guid(0039c482e027b964ba368d339754bb7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/MissionConfigs/FirstMission.asset using Guid(0039c482e027b964ba368d339754bb7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15a819678898c5c4ad0069e946fb75e8') in 0.037511 seconds + Import took 0.043248 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.630960 seconds. + path: Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset + artifactKey: Guid(842ea87c23ba82e4980d0d5c1bccb263) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/EasyBattle_2.asset using Guid(842ea87c23ba82e4980d0d5c1bccb263) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f8762e49f304c5e752d99b7571cb1482') in 0.022298 seconds + Import took 0.028388 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000240 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset + artifactKey: Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_3.asset using Guid(f978d621347647a4f8505449e105298e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4be00f7abebcb404e9936603e78f8f7') in 0.026186 seconds + Import took 0.032250 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000246 seconds. + path: Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset + artifactKey: Guid(c4b45319e9ae8c24a9438acde55e9f9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/EasyBattle_3.asset using Guid(c4b45319e9ae8c24a9438acde55e9f9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2827a01cb8b338c2e735d6511b33913c') in 0.012556 seconds + Import took 0.018058 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000257 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset + artifactKey: Guid(c76ef6aeaf7e2074fb44abc864f27a75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_1.asset using Guid(c76ef6aeaf7e2074fb44abc864f27a75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6157a1b3b186266a3cfd57ba9605d4ac') in 0.009244 seconds + Import took 0.013337 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000224 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset + artifactKey: Guid(0b30cfc668c041747a968d2c8bf1a3cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBattle_3.asset using Guid(0b30cfc668c041747a968d2c8bf1a3cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'daed626949b995898f540d98d3cf6bcf') in 0.010471 seconds + Import took 0.014283 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000196 seconds. + path: Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset + artifactKey: Guid(1ddd96264d0ff474fb1b38acae40b69f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/HardBattle_2.asset using Guid(1ddd96264d0ff474fb1b38acae40b69f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e4cb18096c047da296ed9898af143da') in 0.019317 seconds + Import took 0.025200 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000193 seconds. + path: Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset + artifactKey: Guid(a58b74e66a955c842842e28c951d39f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/Configs/BattleConfigs/NormalBattle_2.asset using Guid(a58b74e66a955c842842e28c951d39f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '074ffea457b3d7b6da0360e63caf809a') in 0.014281 seconds + Import took 0.019604 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002916 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.119 seconds +Domain Reload Profiling: + ReloadAssembly (1120ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (909ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (308ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (290ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.42 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: 2590. +Total: 2.697600 ms (FindLiveObjects: 0.188500 ms CreateObjectMapping: 0.078700 ms MarkObjects: 2.414900 ms DeleteObjects: 0.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002509 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.077 seconds +Domain Reload Profiling: + ReloadAssembly (1078ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (854ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (275ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (79ms) + ProcessInitializeOnLoadAttributes (170ms) + 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.55 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: 2592. +Total: 2.790200 ms (FindLiveObjects: 0.200500 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.494200 ms DeleteObjects: 0.013900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003857 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.200 seconds +Domain Reload Profiling: + ReloadAssembly (1201ms) + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (899ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (326ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (44ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.43 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: 2594. +Total: 2.599800 ms (FindLiveObjects: 0.180500 ms CreateObjectMapping: 0.077200 ms MarkObjects: 2.327100 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: 175.364586 seconds. + path: Assets/Scenes/MainMenu.unity + artifactKey: Guid(ae36a43ecda2f5645878559e1b6f717a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/MainMenu.unity using Guid(ae36a43ecda2f5645878559e1b6f717a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9cff92a8e71012ff5ca73b93fd06037e') in 0.016632 seconds + Import took 0.022146 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003373 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.291 seconds +Domain Reload Profiling: + ReloadAssembly (1292ms) + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + EndReloadAssembly (1118ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (517ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (5ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.49 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: 2596. +Total: 2.863000 ms (FindLiveObjects: 0.207300 ms CreateObjectMapping: 0.127400 ms MarkObjects: 2.506200 ms DeleteObjects: 0.021200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-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: 359.384024 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: '5b4975c7ebf98152c9708acbb440fd72') in 0.018866 seconds + Import took 0.022052 seconds . + +======================================================================== +Received Import Request. + Time since last request: 692.863194 seconds. + path: Assets/Graphics/Fonts + artifactKey: Guid(304cc87a729624f45a6dcbffdc263482) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Graphics/Fonts using Guid(304cc87a729624f45a6dcbffdc263482) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee00cb74657593292a99064004dbe3fe') in 0.009624 seconds + Import took 0.013340 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003805 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.220 seconds +Domain Reload Profiling: + ReloadAssembly (1221ms) + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + EndReloadAssembly (1048ms) + LoadAssemblies (95ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (48ms) + SetupLoadedEditorAssemblies (345ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (108ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (10ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (40ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.6 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. +Total: 3.591800 ms (FindLiveObjects: 0.284400 ms CreateObjectMapping: 0.131200 ms MarkObjects: 3.154000 ms DeleteObjects: 0.021100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003434 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.148 seconds +Domain Reload Profiling: + ReloadAssembly (1149ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + EndReloadAssembly (940ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (329ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (51ms) + SetupLoadedEditorAssemblies (315ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (81ms) + ProcessInitializeOnLoadAttributes (217ms) + 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.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 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.931200 ms (FindLiveObjects: 0.189000 ms CreateObjectMapping: 0.078900 ms MarkObjects: 2.644400 ms DeleteObjects: 0.018000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003019 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.357 seconds +Domain Reload Profiling: + ReloadAssembly (1358ms) + BeginReloadAssembly (295ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (220ms) + EndReloadAssembly (972ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (327ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (277ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (78ms) + ProcessInitializeOnLoadAttributes (182ms) + 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.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. +Total: 5.684500 ms (FindLiveObjects: 0.436100 ms CreateObjectMapping: 0.197300 ms MarkObjects: 4.907800 ms DeleteObjects: 0.140400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002352 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.350 seconds +Domain Reload Profiling: + ReloadAssembly (1351ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (40ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1131ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (91ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (6ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.5 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. +Total: 5.318400 ms (FindLiveObjects: 0.795000 ms CreateObjectMapping: 0.276600 ms MarkObjects: 4.219000 ms DeleteObjects: 0.025300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003771 seconds. +Begin MonoManager ReloadAssembly +Native extension for LinuxStandalone target not found +Native extension for WindowsStandalone target not found +Native extension for OSXStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.262 seconds +Domain Reload Profiling: + ReloadAssembly (1263ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + EndReloadAssembly (1019ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (294ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (113ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (88ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (24ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) +Refreshing native plugins compatible for Editor in 0.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2120 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 94.6 MB. +System memory in use after: 94.7 MB. + +Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. +Total: 3.352300 ms (FindLiveObjects: 0.212000 ms CreateObjectMapping: 0.086700 ms MarkObjects: 3.032400 ms DeleteObjects: 0.020200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker1.log b/Logs/AssetImportWorker1.log deleted file mode 100644 index ce15ad15..00000000 --- a/Logs/AssetImportWorker1.log +++ /dev/null @@ -1,1297 +0,0 @@ -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 -AssetImportWorker1 --projectPath -E:/Projects Ñ#/Unity/omega --logFile -Logs/AssetImportWorker1.log --srvPort -50715 -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 31.89 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Initialize engine version: 2020.3.19f1 (68f137dc9bbe) -[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/Resources/UnitySubsystems -[Subsystems] Discovering subsystems at path 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:56408 -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.001269 seconds. -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 30.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.788 seconds -Domain Reload Profiling: - ReloadAssembly (1789ms) - BeginReloadAssembly (39ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (0ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - EndReloadAssembly (296ms) - LoadAssemblies (37ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (96ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (24ms) - SetupLoadedEditorAssemblies (123ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (30ms) - BeforeProcessingInitializeOnLoad (12ms) - ProcessInitializeOnLoadAttributes (57ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (0ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) -Platform modules already initialized, skipping -Registering precompiled user dll's ... -Registered in 0.001159 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 28.28 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 (725ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (12ms) - EndReloadAssembly (594ms) - LoadAssemblies (57ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (245ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (28ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (9ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2134 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 96.1 MB. -System memory in use after: 96.2 MB. - -Unloading 26 unused Assets to reduce memory usage. Loaded Objects now: 2574. -Total: 2.357100 ms (FindLiveObjects: 0.128400 ms CreateObjectMapping: 0.045300 ms MarkObjects: 2.118800 ms DeleteObjects: 0.063900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: 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/EquipmentConfigs/Armor.asset - artifactKey: Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/Configs/EquipmentConfigs/Armor.asset using Guid(bbceb7ced0fed884a8a70244f6b17d4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c48be4c38e02ed0fe2fd283af00673d9') in 0.025071 seconds - Import took 0.027324 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001209 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.743 seconds -Domain Reload Profiling: - ReloadAssembly (744ms) - BeginReloadAssembly (88ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (612ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (192ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2115 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: 2576. -Total: 2.427200 ms (FindLiveObjects: 0.125000 ms CreateObjectMapping: 0.042900 ms MarkObjects: 2.245000 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 162.691920 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceCard.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceCard.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc97951c5fbdb21c9f80c8414564f298') in 0.005338 seconds - Import took 0.008413 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001171 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.783 seconds -Domain Reload Profiling: - ReloadAssembly (784ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - EndReloadAssembly (648ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (238ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 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.071300 ms (FindLiveObjects: 0.143000 ms CreateObjectMapping: 0.044400 ms MarkObjects: 1.870500 ms DeleteObjects: 0.012800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 48.740950 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceCard.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceCard.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '495531788fae1f7632e7554c366c42b2') in 0.004003 seconds - Import took 0.006624 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001293 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.716 seconds -Domain Reload Profiling: - ReloadAssembly (716ms) - BeginReloadAssembly (91ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (583ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (62ms) - ProcessInitializeOnLoadAttributes (150ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.4 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2581. -Total: 1.976600 ms (FindLiveObjects: 0.115900 ms CreateObjectMapping: 0.043100 ms MarkObjects: 1.805000 ms DeleteObjects: 0.012000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 49.065231 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceCard.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceCard.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9aacbf2812bbbecbe10ca63cc413a0b1') in 0.003321 seconds - Import took 0.005863 seconds . - -======================================================================== -Received Import Request. - Time since last request: 14.651059 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceEquipment.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2031fbe3cd27fefcb7571b21f3feafe') in 0.001054 seconds - Import took 0.003591 seconds . - -======================================================================== -Received Import Request. - Time since last request: 70.514579 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceEquipment.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1101267cefc95b9af75e2334ce58a7ef') in 0.001134 seconds - Import took 0.003734 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001243 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.769 seconds -Domain Reload Profiling: - ReloadAssembly (769ms) - BeginReloadAssembly (80ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (646ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (195ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 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.018500 ms (FindLiveObjects: 0.128900 ms CreateObjectMapping: 0.037800 ms MarkObjects: 1.829200 ms DeleteObjects: 0.022000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 215.736454 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceEquipment.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4968564ff05f8724e93c55209fb09d65') in 0.004549 seconds - Import took 0.007339 seconds . - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001285 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.726 seconds -Domain Reload Profiling: - ReloadAssembly (726ms) - BeginReloadAssembly (92ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (593ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (176ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (39ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (154ms) - 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.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 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.019800 ms (FindLiveObjects: 0.119100 ms CreateObjectMapping: 0.042400 ms MarkObjects: 1.846200 ms DeleteObjects: 0.011500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001201 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.760 seconds -Domain Reload Profiling: - ReloadAssembly (760ms) - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (622ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (183ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (158ms) - 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.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.3 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2587. -Total: 2.122000 ms (FindLiveObjects: 0.125100 ms CreateObjectMapping: 0.044500 ms MarkObjects: 1.925900 ms DeleteObjects: 0.025900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001153 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.30 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.733 seconds -Domain Reload Profiling: - ReloadAssembly (733ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - EndReloadAssembly (601ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (180ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (149ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2589. -Total: 2.039600 ms (FindLiveObjects: 0.118500 ms CreateObjectMapping: 0.040900 ms MarkObjects: 1.867100 ms DeleteObjects: 0.012200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001168 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.741 seconds -Domain Reload Profiling: - ReloadAssembly (741ms) - BeginReloadAssembly (90ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (608ms) - LoadAssemblies (66ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (66ms) - ProcessInitializeOnLoadAttributes (146ms) - 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.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2591. -Total: 2.015900 ms (FindLiveObjects: 0.124100 ms CreateObjectMapping: 0.059000 ms MarkObjects: 1.806900 ms DeleteObjects: 0.025400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001294 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.752 seconds -Domain Reload Profiling: - ReloadAssembly (753ms) - BeginReloadAssembly (96ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - EndReloadAssembly (611ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (179ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (38ms) - SetupLoadedEditorAssemblies (230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (152ms) - 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 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2593. -Total: 2.163600 ms (FindLiveObjects: 0.124900 ms CreateObjectMapping: 0.041400 ms MarkObjects: 1.981800 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.001236 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.758 seconds -Domain Reload Profiling: - ReloadAssembly (758ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (630ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (233ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2595. -Total: 2.303900 ms (FindLiveObjects: 0.129900 ms CreateObjectMapping: 0.053000 ms MarkObjects: 2.094400 ms DeleteObjects: 0.025600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-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: 510.484840 seconds. - path: Assets/Scripts/MainMenuScripts/PlaceEquipment.cs - artifactKey: Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/MainMenuScripts/PlaceEquipment.cs using Guid(4bdd2e3bc474f8040b76b136ff05dde9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efb413a5e48a05166e4726ae254d9a03') in 0.003683 seconds - Import took 0.006992 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.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.785 seconds -Domain Reload Profiling: - ReloadAssembly (785ms) - BeginReloadAssembly (95ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (647ms) - LoadAssemblies (63ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (185ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (41ms) - SetupLoadedEditorAssemblies (248ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (73ms) - ProcessInitializeOnLoadAttributes (162ms) - 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 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2597. -Total: 2.065200 ms (FindLiveObjects: 0.152700 ms CreateObjectMapping: 0.045900 ms MarkObjects: 1.840400 ms DeleteObjects: 0.025500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001364 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.783 seconds -Domain Reload Profiling: - ReloadAssembly (784ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (654ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (190ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (240ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (71ms) - ProcessInitializeOnLoadAttributes (156ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2599. -Total: 2.315000 ms (FindLiveObjects: 0.142900 ms CreateObjectMapping: 0.049700 ms MarkObjects: 2.105800 ms DeleteObjects: 0.015600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001200 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.707 seconds -Domain Reload Profiling: - ReloadAssembly (708ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (590ms) - LoadAssemblies (55ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (172ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (216ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.31 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2601. -Total: 2.038500 ms (FindLiveObjects: 0.127700 ms CreateObjectMapping: 0.048900 ms MarkObjects: 1.848800 ms DeleteObjects: 0.012300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 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.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.808 seconds -Domain Reload Profiling: - ReloadAssembly (809ms) - BeginReloadAssembly (76ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (22ms) - EndReloadAssembly (693ms) - LoadAssemblies (58ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (197ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (48ms) - SetupLoadedEditorAssemblies (251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (80ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2603. -Total: 2.109400 ms (FindLiveObjects: 0.125700 ms CreateObjectMapping: 0.044200 ms MarkObjects: 1.924500 ms DeleteObjects: 0.014300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001298 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.817 seconds -Domain Reload Profiling: - ReloadAssembly (817ms) - BeginReloadAssembly (86ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (25ms) - EndReloadAssembly (685ms) - LoadAssemblies (62ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (40ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (157ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (14ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2605. -Total: 2.148600 ms (FindLiveObjects: 0.140900 ms CreateObjectMapping: 0.051700 ms MarkObjects: 1.925300 ms DeleteObjects: 0.028800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001347 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.751 seconds -Domain Reload Profiling: - ReloadAssembly (752ms) - BeginReloadAssembly (81ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (624ms) - LoadAssemblies (61ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (174ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (225ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (64ms) - ProcessInitializeOnLoadAttributes (148ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2607. -Total: 1.958400 ms (FindLiveObjects: 0.122400 ms CreateObjectMapping: 0.038200 ms MarkObjects: 1.784500 ms DeleteObjects: 0.012700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001354 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.793 seconds -Domain Reload Profiling: - ReloadAssembly (793ms) - BeginReloadAssembly (83ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (23ms) - EndReloadAssembly (668ms) - LoadAssemblies (60ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (182ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (44ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (67ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2609. -Total: 2.120500 ms (FindLiveObjects: 0.143100 ms CreateObjectMapping: 0.041800 ms MarkObjects: 1.920100 ms DeleteObjects: 0.014400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001197 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.796 seconds -Domain Reload Profiling: - ReloadAssembly (796ms) - BeginReloadAssembly (87ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (667ms) - LoadAssemblies (59ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (188ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (237ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (68ms) - ProcessInitializeOnLoadAttributes (155ms) - ProcessInitializeOnLoadMethodAttributes (4ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2611. -Total: 1.958100 ms (FindLiveObjects: 0.125900 ms CreateObjectMapping: 0.042900 ms MarkObjects: 1.775100 ms DeleteObjects: 0.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.001197 seconds. -Begin MonoManager ReloadAssembly -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 0.35 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.054 seconds -Domain Reload Profiling: - ReloadAssembly (1054ms) - BeginReloadAssembly (100ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - EndReloadAssembly (895ms) - LoadAssemblies (83ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (45ms) - SetupLoadedEditorAssemblies (258ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (70ms) - ProcessInitializeOnLoadAttributes (173ms) - ProcessInitializeOnLoadMethodAttributes (5ms) - AfterProcessingInitializeOnLoad (4ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Platform modules already initialized, skipping -Switching build target platform(19) subTarget(0) extendedPlatform(0) -> platform(13) subTarget(537395200) extendedPlatform(0) -Refreshing native plugins compatible for Editor in 0.33 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2116 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 94.4 MB. -System memory in use after: 94.5 MB. - -Unloading 15 unused Assets to reduce memory usage. Loaded Objects now: 2613. -Total: 1.998700 ms (FindLiveObjects: 0.128400 ms CreateObjectMapping: 0.043400 ms MarkObjects: 1.812800 ms DeleteObjects: 0.013300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:graphics/normal-map-encoding: 01000000000000000000000000000000 -> 02000000000000000000000000000000 - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log deleted file mode 100644 index d13a20b0..00000000 --- a/Logs/shadercompiler-AssetImportWorker0.log +++ /dev/null @@ -1,6 +0,0 @@ -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 - -Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) - -Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 7e41729a..e63fe353 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,43 +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: preprocess - insize=7883 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2542 - -Cmd: preprocess - insize=3642 file=Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=1299 - -Cmd: preprocess - insize=12310 file=Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=4702 - -Cmd: preprocess - insize=3662 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2718 - -Cmd: preprocess - insize=4513 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=3751 - -Cmd: preprocess - insize=3640 file=Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=1347 - -Cmd: preprocess - insize=10917 file=Assets/TextMesh Pro/Shaders/TMP_SDF.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=4057 - -Cmd: preprocess - insize=3177 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2815 - -Cmd: preprocess - insize=8069 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2811 - -Cmd: preprocess - insize=10902 file=Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=4047 - -Cmd: preprocess - insize=3694 file=Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=1723 - -Cmd: preprocess - insize=7914 file=Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2554 - -Cmd: preprocess - insize=2468 file=Assets/TextMesh Pro/Shaders/TMP_Sprite.shader surfaceOnly=0 cachingPP=1 buildPlatform=13 pKW=UNITY_NO_DXT5nm UNITY_ENABLE_REFLECTION_BUFFERS UNITY_NO_CUBEMAP_ARRAY UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING dKW=UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_PBS_USE_BRDF2 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_RGBM_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=1177 - Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe1.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe10.log b/Logs/shadercompiler-UnityShaderCompiler.exe10.log deleted file mode 100644 index e63fe353..00000000 --- a/Logs/shadercompiler-UnityShaderCompiler.exe10.log +++ /dev/null @@ -1,4 +0,0 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe11.log b/Logs/shadercompiler-UnityShaderCompiler.exe11.log deleted file mode 100644 index e63fe353..00000000 --- a/Logs/shadercompiler-UnityShaderCompiler.exe11.log +++ /dev/null @@ -1,4 +0,0 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe6.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log index e63fe353..7e7a2d34 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe7.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -1,4 +1,3 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/Logs/shadercompiler-UnityShaderCompiler.exe8.log deleted file mode 100644 index e63fe353..00000000 --- a/Logs/shadercompiler-UnityShaderCompiler.exe8.log +++ /dev/null @@ -1,4 +0,0 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe9.log b/Logs/shadercompiler-UnityShaderCompiler.exe9.log deleted file mode 100644 index e63fe353..00000000 --- a/Logs/shadercompiler-UnityShaderCompiler.exe9.log +++ /dev/null @@ -1,4 +0,0 @@ -Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.19f1/Editor/Data/PlaybackEngines' -Cmd: initializeCompiler - -Cmd: shutdown diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 855165a5..a5aac4b2 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -5,10 +5,10 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_Scenes: + - enabled: 1 + path: Assets/Scenes/MainMenu.unity + guid: ae36a43ecda2f5645878559e1b6f717a - enabled: 1 path: Assets/Scenes/BattleScene.unity guid: 2cda990e2423bbf4892e6590ba056729 - - enabled: 1 - path: Assets/Scenes/MainMenu.unity - guid: c0f2ab0c52da4e04fa0f6cb87378dd5a m_configObjects: {} diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index 94a1ee57..2c958829 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -9,6 +9,12 @@ EditorUserSettings: value: 22424703114646680e0b0227036c6c111b07142f1f2b233e2867083debf42d flags: 0 RecentlyUsedScenePath-1: + value: 22424703114646680e0b0227036c761e0012163e233a3f7e38271427fb + flags: 0 + RecentlyUsedScenePath-2: + value: 22424703114646680e0b0227036c7d110203142f1f2b233e2867083debf42d + flags: 0 + RecentlyUsedScenePath-3: value: 22424703114646680e0b0227036c72111f19352f223d68252320092a flags: 0 vcSharedLogLevel: diff --git a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache index 4fd3844a..240f47e8 100644 Binary files a/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache and b/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index e3f999e7..54602135 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ