From b2a58f1961ad73e3de31f0507e7f349c3adac50d Mon Sep 17 00:00:00 2001 From: Artemii0056 Date: Mon, 11 Apr 2022 19:05:15 +0500 Subject: [PATCH 1/2] Refactoring --- .vsconfig | 6 + Assets/Group1/Scenes/KillAllEnemies.unity | 731 ++--- Assets/Group1/Scripts/NewBehaviourScript1.cs | 7 +- Assets/Group1/Scripts/Refactoring.meta | 8 + .../Group1/Scripts/Refactoring/Booster.prefab | 112 + .../Scripts/Refactoring/Booster.prefab.meta | 7 + Assets/Group1/Scripts/Refactoring/Enemy.meta | 8 + .../Group1/Scripts/Refactoring/Enemy/Enemy.cs | 13 + .../Scripts/Refactoring/Enemy/Enemy.cs.meta | 11 + .../Scripts/Refactoring/Enemy/EnemyMover.cs | 26 + .../Refactoring/Enemy/EnemyMover.cs.meta | 11 + .../Scripts/Refactoring/GameOverScreen.cs | 6 + .../Refactoring/GameOverScreen.cs.meta | 11 + .../Scripts/Refactoring/GameOverScreen.prefab | 97 + .../Refactoring/GameOverScreen.prefab.meta | 7 + Assets/Group1/Scripts/Refactoring/Player.meta | 8 + .../Scripts/Refactoring/Player/Player.cs | 49 + .../Scripts/Refactoring/Player/Player.cs.meta | 11 + .../Player/PlayerCollisionHandler.cs | 28 + .../Player/PlayerCollisionHandler.cs.meta | 11 + .../Scripts/Refactoring/Player/PlayerInput.cs | 27 + .../Refactoring/Player/PlayerInput.cs.meta | 11 + .../Scripts/Refactoring/Player/PlayerMover.cs | 17 + .../Refactoring/Player/PlayerMover.cs.meta | 11 + Assets/Group1/Scripts/Refactoring/Spawner.cs | 46 + .../Scripts/Refactoring/Spawner.cs.meta | 11 + .../Scripts/Refactoring/SpeedBooster.cs | 10 + .../Scripts/Refactoring/SpeedBooster.cs.meta | 11 + .../Group1/Scripts/Refactoring/enemy.prefab | 160 ++ .../Scripts/Refactoring/enemy.prefab.meta | 7 + Assets/Resources.meta | 8 + Assets/Resources/BillingMode.json | 1 + Assets/Resources/BillingMode.json.meta | 7 + Logs/AssetImportWorker0-prev.log | 2407 +++++++++++++++++ Logs/AssetImportWorker0.log | 514 ++++ Logs/shadercompiler-AssetImportWorker0.log | 3 + ...hadercompiler-UnityShaderCompiler.exe0.log | 3 + ...hadercompiler-UnityShaderCompiler.exe1.log | 3 + ...hadercompiler-UnityShaderCompiler.exe2.log | 3 + ...hadercompiler-UnityShaderCompiler.exe3.log | 3 + ...hadercompiler-UnityShaderCompiler.exe4.log | 3 + ...hadercompiler-UnityShaderCompiler.exe5.log | 3 + ...hadercompiler-UnityShaderCompiler.exe6.log | 3 + ...hadercompiler-UnityShaderCompiler.exe7.log | 3 + Packages/manifest.json | 21 +- Packages/packages-lock.json | 391 +++ ProjectSettings/PackageManagerSettings.asset | 43 + ProjectSettings/ProjectVersion.txt | 3 +- ProjectSettings/VersionControlSettings.asset | 8 + UserSettings/EditorUserSettings.asset | 24 + 50 files changed, 4481 insertions(+), 452 deletions(-) create mode 100644 .vsconfig create mode 100644 Assets/Group1/Scripts/Refactoring.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Booster.prefab create mode 100644 Assets/Group1/Scripts/Refactoring/Booster.prefab.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Enemy.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/GameOverScreen.cs create mode 100644 Assets/Group1/Scripts/Refactoring/GameOverScreen.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab create mode 100644 Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Player.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Player/Player.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Player/Player.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/Spawner.cs create mode 100644 Assets/Group1/Scripts/Refactoring/Spawner.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/SpeedBooster.cs create mode 100644 Assets/Group1/Scripts/Refactoring/SpeedBooster.cs.meta create mode 100644 Assets/Group1/Scripts/Refactoring/enemy.prefab create mode 100644 Assets/Group1/Scripts/Refactoring/enemy.prefab.meta create mode 100644 Assets/Resources.meta create mode 100644 Assets/Resources/BillingMode.json create mode 100644 Assets/Resources/BillingMode.json.meta create mode 100644 Logs/AssetImportWorker0-prev.log create mode 100644 Logs/AssetImportWorker0.log create mode 100644 Logs/shadercompiler-AssetImportWorker0.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe0.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe1.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe2.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe3.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe4.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe5.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe6.log create mode 100644 Logs/shadercompiler-UnityShaderCompiler.exe7.log create mode 100644 Packages/packages-lock.json create mode 100644 ProjectSettings/PackageManagerSettings.asset create mode 100644 ProjectSettings/VersionControlSettings.asset create mode 100644 UserSettings/EditorUserSettings.asset diff --git a/.vsconfig b/.vsconfig new file mode 100644 index 00000000..d70cd98b --- /dev/null +++ b/.vsconfig @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.VisualStudio.Workload.ManagedGame" + ] +} diff --git a/Assets/Group1/Scenes/KillAllEnemies.unity b/Assets/Group1/Scenes/KillAllEnemies.unity index 21adfb9b..1652544a 100644 --- a/Assets/Group1/Scenes/KillAllEnemies.unity +++ b/Assets/Group1/Scenes/KillAllEnemies.unity @@ -38,12 +38,12 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 170076734} - m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} + m_IndirectSpecularColor: {r: 0.44657874, g: 0.49641258, b: 0.5748172, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 11 + serializedVersion: 12 m_GIWorkflowMode: 0 m_GISettings: serializedVersion: 2 @@ -54,7 +54,7 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 0 m_LightmapEditorSettings: - serializedVersion: 10 + serializedVersion: 12 m_Resolution: 2 m_BakeResolution: 10 m_AtlasSize: 512 @@ -62,6 +62,7 @@ LightmapSettings: m_AOMaxDistance: 1 m_CompAOExponent: 1 m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 m_Padding: 2 m_LightmapParameters: {fileID: 0} m_LightmapsBakeMode: 1 @@ -76,10 +77,16 @@ LightmapSettings: m_PVRDirectSampleCount: 32 m_PVRSampleCount: 256 m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 m_PVRFilterTypeDirect: 0 m_PVRFilterTypeIndirect: 0 m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 + m_PVREnvironmentMIS: 0 m_PVRCulling: 1 m_PVRFilteringGaussRadiusDirect: 1 m_PVRFilteringGaussRadiusIndirect: 5 @@ -87,9 +94,11 @@ LightmapSettings: m_PVRFilteringAtrousPositionSigmaDirect: 0.5 m_PVRFilteringAtrousPositionSigmaIndirect: 2 m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 + m_LightingSettings: {fileID: 1619712651} --- !u!196 &4 NavMeshSettings: serializedVersion: 2 @@ -109,101 +118,11 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &141422275 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 141422279} - - component: {fileID: 141422278} - - component: {fileID: 141422277} - m_Layer: 0 - m_Name: enemy - m_TagString: Enemy - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &141422277 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141422275} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 65f7df4705b7dae48944a39b48934484, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!212 &141422278 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141422275} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} - m_Color: {r: 0.9056604, g: 0.2947668, b: 0.2947668, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &141422279 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141422275} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 3.59, y: 3.09, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &170076733 GameObject: m_ObjectHideFlags: 0 @@ -229,12 +148,14 @@ Light: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 170076733} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -244,6 +165,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -251,12 +190,16 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 1 m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &170076735 @@ -273,6 +216,58 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &449889912 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 449889914} + - component: {fileID: 449889913} + m_Layer: 0 + m_Name: Spawner + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &449889913 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449889912} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9ceea5a99863b8d40b503741e105660f, type: 3} + m_Name: + m_EditorClassIdentifier: + _gameOverScreen: {fileID: 2310841374267127098, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + _speedBooster: {fileID: 2038446812980595392, guid: ac5b2c53065986a4187a5dfaf6fa212d, + type: 3} + _enemy: {fileID: 2159208419079332547, guid: 7af1c29eccfca9d429f1d2cd29ad20ab, type: 3} + _enemyCount: 5 + _boosterCount: 1 + _spawnRadius: 5 +--- !u!4 &449889914 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449889912} + 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: 1675488822} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &534669902 GameObject: m_ObjectHideFlags: 0 @@ -312,9 +307,10 @@ Camera: 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_GateFitMode: 2 m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 @@ -368,276 +364,154 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: cd6d0074e725a114e850d2e604fe4b0d, type: 3} m_Name: m_EditorClassIdentifier: - go: {fileID: 1054253062} + go: {fileID: 0} a: {fileID: 1761935009} B: - - {fileID: 2083640146} - - {fileID: 1754708960} - - {fileID: 141422275} - - {fileID: 1578050036} ---- !u!1 &1054253062 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1054253064} - - component: {fileID: 1054253063} - m_Layer: 0 - m_Name: New Sprite - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!212 &1054253063 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1054253062} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 100 - m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} - m_Color: {r: 0, g: 0, b: 0, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &1054253064 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1054253062} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -0.08, y: 0.56, z: -0.15457831} - m_LocalScale: {x: 25, y: 25, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1578050036 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1578050040} - - component: {fileID: 1578050039} - - component: {fileID: 1578050038} - m_Layer: 0 - m_Name: enemy - m_TagString: Enemy - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1578050038 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1578050036} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 65f7df4705b7dae48944a39b48934484, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!212 &1578050039 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1578050036} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} - m_Color: {r: 0.9056604, g: 0.2947668, b: 0.2947668, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &1578050040 -Transform: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} +--- !u!1001 &1305977152 +PrefabInstance: m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1578050036} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 3.59, y: -1.34, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1754708960 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1754708964} - - component: {fileID: 1754708963} - - component: {fileID: 1754708962} - m_Layer: 0 - m_Name: enemy - m_TagString: Enemy - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1754708962 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1754708960} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 65f7df4705b7dae48944a39b48934484, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!212 &1754708963 -SpriteRenderer: + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 449889914} + m_Modifications: + - target: {fileID: 3588088783241636208, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_Name + value: GameOverScreen + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636208, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalPosition.x + value: -0.08 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalPosition.y + value: 0.56 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalPosition.z + value: -0.15457831 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4db44269a74175b488caa67c577b6475, type: 3} +--- !u!850595691 &1619712651 +LightingSettings: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1754708960} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} - m_Color: {r: 0.9056604, g: 0.2947668, b: 0.2947668, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &1754708964 + m_Name: Settings.lighting + serializedVersion: 3 + m_GIWorkflowMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 1 + m_BakeBackend: 1 + m_LightmapMaxSize: 512 + m_BakeResolution: 10 + 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: 256 + m_PVREnvironmentSampleCount: 256 + 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 +--- !u!4 &1675488822 stripped Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 3588088783241636222, guid: 4db44269a74175b488caa67c577b6475, + type: 3} + m_PrefabInstance: {fileID: 1305977152} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1754708960} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 3.59, y: 0.71, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1761935009 GameObject: m_ObjectHideFlags: 0 @@ -648,9 +522,13 @@ GameObject: m_Component: - component: {fileID: 1761935011} - component: {fileID: 1761935010} + - component: {fileID: 1761935015} + - component: {fileID: 1761935014} + - component: {fileID: 1761935013} - component: {fileID: 1761935012} + - component: {fileID: 1761935016} m_Layer: 0 - m_Name: New Sprite (1) + m_Name: Player m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -670,6 +548,8 @@ SpriteRenderer: m_MotionVectors: 1 m_LightProbeUsage: 1 m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: @@ -681,6 +561,7 @@ SpriteRenderer: m_ProbeAnchor: {fileID: 0} m_LightProbeVolumeOverride: {fileID: 0} m_ScaleInLightmap: 1 + m_ReceiveGI: 1 m_PreserveUVs: 0 m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 @@ -716,7 +597,7 @@ Transform: m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 6 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &1761935012 MonoBehaviour: @@ -727,101 +608,69 @@ MonoBehaviour: m_GameObject: {fileID: 1761935009} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: dede9e7d6741aea4cb07b98da83cc6a8, type: 3} + m_Script: {fileID: 11500000, guid: 15454b9fa3a653c4c9c01e634f7c1db4, type: 3} m_Name: m_EditorClassIdentifier: - spEed: 4 - timer: 0 - time: 0 ---- !u!1 &2083640146 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2083640148} - - component: {fileID: 2083640147} - - component: {fileID: 2083640150} - m_Layer: 0 - m_Name: enemy - m_TagString: Enemy - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!212 &2083640147 -SpriteRenderer: +--- !u!114 &1761935013 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2083640146} + m_GameObject: {fileID: 1761935009} m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 0 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} - m_Color: {r: 0.9056604, g: 0.2947668, b: 0.2947668, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 1, y: 1} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 ---- !u!4 &2083640148 -Transform: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2319940fd4af6884fbc386bd6e405df0, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1761935014 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2083640146} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -3.13, y: 0.71, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &2083640150 + m_GameObject: {fileID: 1761935009} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c861f4e9875fadb40853e19d5c6beee0, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1761935015 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2083640146} + m_GameObject: {fileID: 1761935009} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 65f7df4705b7dae48944a39b48934484, type: 3} + m_Script: {fileID: 11500000, guid: f38088792c4411e48871f2810f11d11d, type: 3} m_Name: m_EditorClassIdentifier: + _startSpeed: 4 +--- !u!61 &1761935016 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761935009} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 1, y: 1} + newSize: {x: 1, y: 1} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 1, y: 1} + m_EdgeRadius: 0 diff --git a/Assets/Group1/Scripts/NewBehaviourScript1.cs b/Assets/Group1/Scripts/NewBehaviourScript1.cs index 14bd7c3f..9c13cf9c 100644 --- a/Assets/Group1/Scripts/NewBehaviourScript1.cs +++ b/Assets/Group1/Scripts/NewBehaviourScript1.cs @@ -52,14 +52,13 @@ public void SendMEssage(GameObject b) if(b.name == "enemy") { Destroy(b); - }if(b.name == "speed") + } + + if(b.name == "speed") { spEed *= 2; timer = true; time = 2; - - - } } } diff --git a/Assets/Group1/Scripts/Refactoring.meta b/Assets/Group1/Scripts/Refactoring.meta new file mode 100644 index 00000000..709db6b5 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ed489bb3bd302849beb2bcd2bc842a1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Booster.prefab b/Assets/Group1/Scripts/Refactoring/Booster.prefab new file mode 100644 index 00000000..5230ee40 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Booster.prefab @@ -0,0 +1,112 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4543746144300535491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2940712333880659105} + - component: {fileID: 3845507427301760863} + - component: {fileID: 3313391427986682600} + - component: {fileID: 7360003824409305} + - component: {fileID: 2038446812980595392} + m_Layer: 0 + m_Name: Booster + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2940712333880659105 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4543746144300535491} + 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: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3845507427301760863 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4543746144300535491} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &3313391427986682600 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4543746144300535491} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!65 &7360003824409305 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4543746144300535491} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2038446812980595392 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4543746144300535491} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 46d0070567e59024fbd197b65e33044b, type: 3} + m_Name: + m_EditorClassIdentifier: + _speedMultiplier: 0 + _boosterDuration: 0 diff --git a/Assets/Group1/Scripts/Refactoring/Booster.prefab.meta b/Assets/Group1/Scripts/Refactoring/Booster.prefab.meta new file mode 100644 index 00000000..65c02050 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Booster.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ac5b2c53065986a4187a5dfaf6fa212d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Enemy.meta b/Assets/Group1/Scripts/Refactoring/Enemy.meta new file mode 100644 index 00000000..c73f2344 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Enemy.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4c0ef532c409bd40a31967228a9e0b7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs b/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs new file mode 100644 index 00000000..c3fe5037 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs @@ -0,0 +1,13 @@ +using UnityEngine; +using UnityEngine.Events; + +public class Enemy : MonoBehaviour +{ + public UnityAction Died; + + public void Dying() + { + Died?.Invoke(this); + Destroy(gameObject); + } +} \ No newline at end of file diff --git a/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs.meta b/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs.meta new file mode 100644 index 00000000..61888889 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a75e6af668eb97d44862062acfcb9dda +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs b/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs new file mode 100644 index 00000000..f6de6948 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs @@ -0,0 +1,26 @@ +using UnityEngine; + +public class EnemyMover : MonoBehaviour +{ + [SerializeField] private float _speed = 2; + + private Vector3 _target; + + private void Start() + { + SetNextTarget(); + } + + private void Update() + { + transform.position = Vector3.MoveTowards(transform.position, _target, _speed * Time.deltaTime); + + if (transform.position == _target) + SetNextTarget(); + } + + private void SetNextTarget() + { + _target = Random.insideUnitCircle * 4; + } +} \ No newline at end of file diff --git a/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs.meta b/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs.meta new file mode 100644 index 00000000..a4a77f3e --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 370dba03cde8093468f6423500dc2303 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs b/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs new file mode 100644 index 00000000..907498a1 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs @@ -0,0 +1,6 @@ +using UnityEngine; + +public class GameOverScreen : MonoBehaviour +{ + +} diff --git a/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs.meta b/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs.meta new file mode 100644 index 00000000..3e215e06 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/GameOverScreen.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 757c3f85ec0ecb042a911e2d1e9a48c9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab b/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab new file mode 100644 index 00000000..dde05a07 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab @@ -0,0 +1,97 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3588088783241636208 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3588088783241636222} + - component: {fileID: 3588088783241636209} + - component: {fileID: 2310841374267127098} + m_Layer: 0 + m_Name: GameOverScreen + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3588088783241636222 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3588088783241636208} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.08, y: 0.56, z: -0.15457831} + m_LocalScale: {x: 25, y: 25, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!212 &3588088783241636209 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3588088783241636208} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 100 + m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &2310841374267127098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3588088783241636208} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 757c3f85ec0ecb042a911e2d1e9a48c9, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab.meta b/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab.meta new file mode 100644 index 00000000..f74e7a3d --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4db44269a74175b488caa67c577b6475 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Player.meta b/Assets/Group1/Scripts/Refactoring/Player.meta new file mode 100644 index 00000000..7e36d2e4 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 897f049d446e17a46955d27f0b5160da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Player/Player.cs b/Assets/Group1/Scripts/Refactoring/Player/Player.cs new file mode 100644 index 00000000..f81d1713 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/Player.cs @@ -0,0 +1,49 @@ +using System; +using UnityEngine; + +public class Player : MonoBehaviour +{ + [SerializeField] private float _startSpeed = 4; + + private bool _isBoosterActive; + private float _currentSpeed; + private float _speedMultiplier; + private float _boosterDuration; + + public float CurrentSpeed => _currentSpeed; + + private void Start() + { + _currentSpeed = _startSpeed; + } + + private void Update() + { + if (_isBoosterActive) + { + _boosterDuration -= Time.deltaTime; + + if (_boosterDuration < 0) + { + _isBoosterActive = false; + _currentSpeed /= _speedMultiplier; + } + } + } + + public void PickUpBooster(float speedMultiplier, float boosterDuration) + { + if (speedMultiplier <= 0) + throw new ArgumentOutOfRangeException(nameof(speedMultiplier)); + + if (boosterDuration <= 0) + throw new ArgumentOutOfRangeException(nameof(boosterDuration)); + + _speedMultiplier = speedMultiplier; + + _isBoosterActive = true; + + _boosterDuration += boosterDuration; + _currentSpeed *= _speedMultiplier; + } +} diff --git a/Assets/Group1/Scripts/Refactoring/Player/Player.cs.meta b/Assets/Group1/Scripts/Refactoring/Player/Player.cs.meta new file mode 100644 index 00000000..dac9b0a6 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/Player.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f38088792c4411e48871f2810f11d11d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs b/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs new file mode 100644 index 00000000..63d5ffaf --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs @@ -0,0 +1,28 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +[RequireComponent(typeof(Player))] +public class PlayerCollisionHandler : MonoBehaviour +{ + private Player _player; + + private void Start() + { + _player = GetComponent(); + } + + private void OnTriggerEnter2D(Collider2D collision) + { + if (collision.gameObject.TryGetComponent(out Enemy enemy)) + { + enemy.Dying(); + } + + if (collision.TryGetComponent(out SpeedBooster speedBooster)) + { + _player.PickUpBooster(speedBooster.SpeedMultiplier, speedBooster.BoosterDuration); + Destroy(speedBooster); + } + } +} diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs.meta b/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs.meta new file mode 100644 index 00000000..89bdeb87 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c861f4e9875fadb40853e19d5c6beee0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs b/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs new file mode 100644 index 00000000..570009f9 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs @@ -0,0 +1,27 @@ +using UnityEngine; + +[RequireComponent(typeof(PlayerMover))] +public class PlayerInput : MonoBehaviour +{ + private PlayerMover _playerMover; + + private void Start() + { + _playerMover = GetComponent(); + } + + private void Update() + { + if (Input.GetKey(KeyCode.W)) + _playerMover.Move(Vector3.up); + + if (Input.GetKey(KeyCode.S)) + _playerMover.Move(Vector3.down); + + if (Input.GetKey(KeyCode.A)) + _playerMover.Move(Vector3.left); + + if (Input.GetKey(KeyCode.D)) + _playerMover.Move(Vector3.right); + } +} diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs.meta b/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs.meta new file mode 100644 index 00000000..b44eb8cf --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 15454b9fa3a653c4c9c01e634f7c1db4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs b/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs new file mode 100644 index 00000000..0b40156f --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs @@ -0,0 +1,17 @@ +using UnityEngine; + +[RequireComponent(typeof(Player))] +public class PlayerMover : MonoBehaviour +{ + private Player _player; + + private void Start() + { + _player = GetComponent(); + } + + public void Move(Vector3 direction) + { + transform.position += direction * _player.CurrentSpeed * Time.deltaTime; + } +} diff --git a/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs.meta b/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs.meta new file mode 100644 index 00000000..2301d43d --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2319940fd4af6884fbc386bd6e405df0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/Spawner.cs b/Assets/Group1/Scripts/Refactoring/Spawner.cs new file mode 100644 index 00000000..8c7037ad --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Spawner.cs @@ -0,0 +1,46 @@ +using UnityEngine; + +public class Spawner : MonoBehaviour +{ + [SerializeField] private GameOverScreen _gameOverScreen; + [SerializeField] private SpeedBooster _speedBooster; + [SerializeField] private Enemy _enemy; + [SerializeField] private int _enemyCount; + [SerializeField] private int _boosterCount; + [SerializeField] private float _spawnRadius; + + private int _countSpawnedEnemy; + private int _countKilledEnemy; + + private void Start() + { + Spawn(_enemy.gameObject, _enemyCount); + Spawn(_speedBooster.gameObject, _boosterCount); + } + + private void Spawn(GameObject template, int count) + { + for (int i = 0; i < count; i++) + { + var spawned = Instantiate(template, Random.insideUnitCircle * _spawnRadius, Quaternion.identity); + + if (spawned.TryGetComponent(out Enemy enemy)) + { + enemy.Died += OnEnemyDied; + _countSpawnedEnemy++; + } + } + } + + private void OnEnemyDied(Enemy enemy) + { + enemy.Died -= OnEnemyDied; + _countKilledEnemy++; + + if (_countSpawnedEnemy == _countKilledEnemy) + { + _gameOverScreen.gameObject.SetActive(true); + Time.timeScale = 0; + } + } +} diff --git a/Assets/Group1/Scripts/Refactoring/Spawner.cs.meta b/Assets/Group1/Scripts/Refactoring/Spawner.cs.meta new file mode 100644 index 00000000..d07bcc8a --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/Spawner.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9ceea5a99863b8d40b503741e105660f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs b/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs new file mode 100644 index 00000000..5c738c18 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs @@ -0,0 +1,10 @@ +using UnityEngine; + +public class SpeedBooster : MonoBehaviour +{ + [SerializeField] private float _speedMultiplier; + [SerializeField] private float _boosterDuration; + + public float SpeedMultiplier => _speedMultiplier; + public float BoosterDuration => _boosterDuration; +} diff --git a/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs.meta b/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs.meta new file mode 100644 index 00000000..ff26a23d --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/SpeedBooster.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 46d0070567e59024fbd197b65e33044b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Group1/Scripts/Refactoring/enemy.prefab b/Assets/Group1/Scripts/Refactoring/enemy.prefab new file mode 100644 index 00000000..5475303b --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/enemy.prefab @@ -0,0 +1,160 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8395445749975035290 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8395445749975035292} + - component: {fileID: 8395445749975035291} + - component: {fileID: 2159208419079332547} + - component: {fileID: 7345890764516640683} + - component: {fileID: -6506420961412369841} + - component: {fileID: -8312546105798801756} + m_Layer: 0 + m_Name: enemy + m_TagString: Enemy + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8395445749975035292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -3.13, y: 0.71, z: 0} + 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!212 &8395445749975035291 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 21300000, guid: c393ddce902166c4fb0e2130d216d549, type: 3} + m_Color: {r: 0.9056604, g: 0.2947668, b: 0.2947668, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 1, y: 1} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 +--- !u!114 &2159208419079332547 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a75e6af668eb97d44862062acfcb9dda, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &7345890764516640683 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 370dba03cde8093468f6423500dc2303, type: 3} + m_Name: + m_EditorClassIdentifier: + _speed: 2 +--- !u!61 &-6506420961412369841 +BoxCollider2D: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_Enabled: 1 + m_Density: 1 + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_UsedByEffector: 0 + m_UsedByComposite: 0 + m_Offset: {x: 0, y: 0} + m_SpriteTilingProperty: + border: {x: 0, y: 0, z: 0, w: 0} + pivot: {x: 0.5, y: 0.5} + oldSize: {x: 1, y: 1} + newSize: {x: 1, y: 1} + adaptiveTilingThreshold: 0.5 + drawMode: 0 + adaptiveTiling: 0 + m_AutoTiling: 0 + serializedVersion: 2 + m_Size: {x: 1, y: 1} + m_EdgeRadius: 0 +--- !u!50 &-8312546105798801756 +Rigidbody2D: + serializedVersion: 4 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8395445749975035290} + m_BodyType: 1 + m_Simulated: 1 + m_UseFullKinematicContacts: 0 + m_UseAutoMass: 0 + m_Mass: 1 + m_LinearDrag: 0 + m_AngularDrag: 0.05 + m_GravityScale: 1 + m_Material: {fileID: 0} + m_Interpolate: 0 + m_SleepingMode: 1 + m_CollisionDetection: 0 + m_Constraints: 0 diff --git a/Assets/Group1/Scripts/Refactoring/enemy.prefab.meta b/Assets/Group1/Scripts/Refactoring/enemy.prefab.meta new file mode 100644 index 00000000..efda5020 --- /dev/null +++ b/Assets/Group1/Scripts/Refactoring/enemy.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7af1c29eccfca9d429f1d2cd29ad20ab +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources.meta b/Assets/Resources.meta new file mode 100644 index 00000000..4559c0b5 --- /dev/null +++ b/Assets/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2331377dd6da34046b196d6671739fb7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Resources/BillingMode.json b/Assets/Resources/BillingMode.json new file mode 100644 index 00000000..6f4bfb71 --- /dev/null +++ b/Assets/Resources/BillingMode.json @@ -0,0 +1 @@ +{"androidStore":"GooglePlay"} \ No newline at end of file diff --git a/Assets/Resources/BillingMode.json.meta b/Assets/Resources/BillingMode.json.meta new file mode 100644 index 00000000..e93c48e7 --- /dev/null +++ b/Assets/Resources/BillingMode.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3a4ccf3a91cd25a488a09b77128cffae +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log new file mode 100644 index 00000000..22eea7fa --- /dev/null +++ b/Logs/AssetImportWorker0-prev.log @@ -0,0 +1,2407 @@ +Using pre-set license +Built from '2020.3/staging' branch; Version is '2020.3.18f1 (a7d1c678663c) revision 10998214'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 19044.1620; Version 2009; 64bit' Language: 'ru' Physical Memory: 7541 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2020.3.18f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +C:/Users/Артемий/Documents/GitHub/SHK-Unity +-logFile +Logs/AssetImportWorker0.log +-srvPort +54236 +Successfully changed project path to: C:/Users/Артемий/Documents/GitHub/SHK-Unity +C:/Users/Артемий/Documents/GitHub/SHK-Unity +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 155.85 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2020.3.18f1 (a7d1c678663c) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Users/Артемий/Documents/GitHub/SHK-Unity/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: AMD Radeon(TM) Graphics (ID=0x1636) + Vendor: + VRAM: 3770 MB + Driver: 27.20.21030.1005 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56436 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.005358 seconds. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 79.39 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 4.889 seconds +Domain Reload Profiling: + ReloadAssembly (4890ms) + BeginReloadAssembly (131ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (2ms) + EndReloadAssembly (838ms) + LoadAssemblies (126ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (337ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (47ms) + SetupLoadedEditorAssemblies (305ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (79ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (127ms) + ProcessInitializeOnLoadMethodAttributes (44ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.006292 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.044 seconds +Domain Reload Profiling: + ReloadAssembly (2045ms) + BeginReloadAssembly (362ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + EndReloadAssembly (1521ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (498ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (617ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (178ms) + ProcessInitializeOnLoadAttributes (367ms) + ProcessInitializeOnLoadMethodAttributes (53ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.16 seconds +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 80.9 MB. +System memory in use after: 81.0 MB. + +Unloading 56 unused Assets to reduce memory usage. Loaded Objects now: 2373. +Total: 13.726500 ms (FindLiveObjects: 0.433700 ms CreateObjectMapping: 0.156900 ms MarkObjects: 13.019200 ms DeleteObjects: 0.114000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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/Group1 + artifactKey: Guid(ee4993931bc84204e884e5e0f07a5fe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1 using Guid(ee4993931bc84204e884e5e0f07a5fe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6da865600421652a20343e22f1fdf1f1') in 0.016332 seconds + Import took 0.020770 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000298 seconds. + path: Assets/Group1/Scripts + artifactKey: Guid(599af706dd3de294dbbc342814c5e602) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts using Guid(599af706dd3de294dbbc342814c5e602) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d58f43c84f8a8658769b4529eb4f3cf') in 0.010721 seconds + Import took 0.015782 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.000343 seconds. + path: Assets/Group1/Player.png + artifactKey: Guid(e3d497cf399ca0d42af41c518d283eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Player.png using Guid(e3d497cf399ca0d42af41c518d283eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b17d8e3e6301346849b34fea072f8c4') in 0.189833 seconds + Import took 0.194655 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.049226 seconds. + path: Assets/Group1/Scripts/Refactoring + artifactKey: Guid(5ed489bb3bd302849beb2bcd2bc842a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring using Guid(5ed489bb3bd302849beb2bcd2bc842a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c0d02ed3382d686f8070a0837485cf5') in 0.016456 seconds + Import took 0.022295 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.015169 seconds. + path: Assets/Group1/Scripts/NewBehaviourScript1.cs + artifactKey: Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/NewBehaviourScript1.cs using Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6202349141651de7a0f0736bee5402e') in 0.018107 seconds + Import took 0.025009 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.030597 seconds. + path: Assets/Group1/Scripts/NewBehaviourScript1.cs + artifactKey: Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/NewBehaviourScript1.cs using Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6202349141651de7a0f0736bee5402e') in 0.009760 seconds + Import took 0.017080 seconds . + +======================================================================== +Received Import Request. + Time since last request: 10.491480 seconds. + path: Assets/Group1/Scripts/Refactoring/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41c0c8194509ff95230d2a9c647b6e91') in 0.007342 seconds + Import took 0.016081 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006799 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.53 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.881 seconds +Domain Reload Profiling: + ReloadAssembly (1881ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1600ms) + LoadAssemblies (139ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (562ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (569ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (147ms) + ProcessInitializeOnLoadAttributes (347ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1962 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.7 MB. +System memory in use after: 83.9 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2381. +Total: 10.558900 ms (FindLiveObjects: 0.359600 ms CreateObjectMapping: 0.130100 ms MarkObjects: 10.022200 ms DeleteObjects: 0.044500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 13.279590 seconds. + path: Assets/Group1/Scripts/Refactoring/PlayerMover.cs + artifactKey: Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/PlayerMover.cs using Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '474847f9df056877f69c7275615a44c8') in 0.016817 seconds + Import took 0.024976 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005367 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.637 seconds +Domain Reload Profiling: + ReloadAssembly (1638ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1373ms) + LoadAssemblies (138ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (474ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (542ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (346ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.96 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1963 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.8 MB. +System memory in use after: 83.9 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2384. +Total: 10.439300 ms (FindLiveObjects: 0.348900 ms CreateObjectMapping: 0.086600 ms MarkObjects: 9.939300 ms DeleteObjects: 0.062100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 15.462404 seconds. + path: Assets/Group1/Scripts/Refactoring/PlayerInput.cs + artifactKey: Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/PlayerInput.cs using Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77fc8fcba62fed651285a1f1ea1f37cd') in 0.021715 seconds + Import took 0.032105 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009288 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.565 seconds +Domain Reload Profiling: + ReloadAssembly (1566ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1302ms) + LoadAssemblies (135ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (421ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (528ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (331ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1964 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.0 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2387. +Total: 10.523100 ms (FindLiveObjects: 0.277700 ms CreateObjectMapping: 0.072600 ms MarkObjects: 10.121800 ms DeleteObjects: 0.048300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.008043 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.32 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.173 seconds +Domain Reload Profiling: + ReloadAssembly (2174ms) + BeginReloadAssembly (232ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + EndReloadAssembly (1801ms) + LoadAssemblies (190ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (578ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (102ms) + SetupLoadedEditorAssemblies (656ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (160ms) + ProcessInitializeOnLoadAttributes (418ms) + ProcessInitializeOnLoadMethodAttributes (55ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.61 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1964 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.0 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2389. +Total: 12.772600 ms (FindLiveObjects: 0.278400 ms CreateObjectMapping: 0.071900 ms MarkObjects: 12.375600 ms DeleteObjects: 0.045000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 129.370143 seconds. + path: Assets/Group1/Scripts/Refactoring/PlayerMover.cs + artifactKey: Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/PlayerMover.cs using Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd48e0fde37e5cfa953ddfe353416d06a') in 0.013472 seconds + Import took 0.019830 seconds . + +======================================================================== +Received Import Request. + Time since last request: 18.616236 seconds. + path: Assets/Group1/Scripts/Refactoring/PlayerInput.cs + artifactKey: Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/PlayerInput.cs using Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38739897159c8bb24619235346c50165') in 0.010617 seconds + Import took 0.036910 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.032220 seconds. + path: Assets/Group1/Scripts/Refactoring/PlayerInput.cs + artifactKey: Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/PlayerInput.cs using Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38739897159c8bb24619235346c50165') in 0.017260 seconds + Import took 0.023149 seconds . + +======================================================================== +Received Import Request. + Time since last request: 10.502746 seconds. + path: Assets/Group1/Scripts/Refactoring/Player + artifactKey: Guid(897f049d446e17a46955d27f0b5160da) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player using Guid(897f049d446e17a46955d27f0b5160da) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd014a9630bf777a3f78260dd73a16772') in 0.008058 seconds + Import took 0.015085 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.542052 seconds. + path: Assets/Group1/Scripts/Refactoring/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec85ad8c8420a8c3308535f9869b0712') in 0.005804 seconds + Import took 0.011854 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.001046 seconds. + path: Assets/Group1/Scripts/Refactoring/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec85ad8c8420a8c3308535f9869b0712') in 0.006650 seconds + Import took 0.012609 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005191 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.60 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.796 seconds +Domain Reload Profiling: + ReloadAssembly (1796ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1536ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (456ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (674ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (207ms) + ProcessInitializeOnLoadAttributes (389ms) + ProcessInitializeOnLoadMethodAttributes (48ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1964 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.0 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2391. +Total: 15.427400 ms (FindLiveObjects: 0.332900 ms CreateObjectMapping: 0.122300 ms MarkObjects: 14.901000 ms DeleteObjects: 0.068200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 10.459977 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy + artifactKey: Guid(a4c0ef532c409bd40a31967228a9e0b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy using Guid(a4c0ef532c409bd40a31967228a9e0b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a52583a3423254baecb3e027a6130384') in 0.013445 seconds + Import took 0.017948 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.006005 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy + artifactKey: Guid(a4c0ef532c409bd40a31967228a9e0b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy using Guid(a4c0ef532c409bd40a31967228a9e0b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a52583a3423254baecb3e027a6130384') in 0.005873 seconds + Import took 0.010149 seconds . + +======================================================================== +Received Import Request. + Time since last request: 8.381806 seconds. + path: Assets/Group1/Scripts/e.cs + artifactKey: Guid(65f7df4705b7dae48944a39b48934484) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/e.cs using Guid(65f7df4705b7dae48944a39b48934484) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8117f73430847f3642150b4515c5524e') in 0.010489 seconds + Import took 0.016666 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.001205 seconds. + path: Assets/Group1/Scripts/e.cs + artifactKey: Guid(65f7df4705b7dae48944a39b48934484) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/e.cs using Guid(65f7df4705b7dae48944a39b48934484) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8117f73430847f3642150b4515c5524e') in 0.005999 seconds + Import took 0.011740 seconds . + +======================================================================== +Received Import Request. + Time since last request: 152.991021 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs + artifactKey: Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs using Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0850a11fc67c8c00d30648eb75a8a347') in 0.007142 seconds + Import took 0.015587 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005485 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.005 seconds +Domain Reload Profiling: + ReloadAssembly (2005ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1750ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (443ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (827ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (201ms) + ProcessInitializeOnLoadAttributes (525ms) + ProcessInitializeOnLoadMethodAttributes (69ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1965 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.0 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2394. +Total: 15.396100 ms (FindLiveObjects: 0.478000 ms CreateObjectMapping: 0.211700 ms MarkObjects: 14.637600 ms DeleteObjects: 0.065700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.004942 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.751 seconds +Domain Reload Profiling: + ReloadAssembly (1752ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1479ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (471ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (59ms) + SetupLoadedEditorAssemblies (642ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (162ms) + ProcessInitializeOnLoadAttributes (412ms) + ProcessInitializeOnLoadMethodAttributes (48ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1965 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.0 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2396. +Total: 9.191100 ms (FindLiveObjects: 0.266100 ms CreateObjectMapping: 0.072700 ms MarkObjects: 8.803300 ms DeleteObjects: 0.047000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 344.146890 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs + artifactKey: Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs using Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '219204cca5c9599d528d40da384fb0db') in 0.008251 seconds + Import took 0.032512 seconds . + +======================================================================== +Received Import Request. + Time since last request: 7.665977 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs + artifactKey: Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs using Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5a9f26a559d20d9d1325512c42f5e18') in 0.012583 seconds + Import took 0.018802 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005404 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.900 seconds +Domain Reload Profiling: + ReloadAssembly (1900ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1621ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (430ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (788ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (201ms) + ProcessInitializeOnLoadAttributes (495ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.53 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1966 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 83.9 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2399. +Total: 15.995500 ms (FindLiveObjects: 0.378900 ms CreateObjectMapping: 0.130700 ms MarkObjects: 15.410000 ms DeleteObjects: 0.071700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.008524 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.09 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.603 seconds +Domain Reload Profiling: + ReloadAssembly (1604ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1330ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (425ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (521ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (328ms) + ProcessInitializeOnLoadMethodAttributes (49ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1966 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2401. +Total: 12.249100 ms (FindLiveObjects: 0.378000 ms CreateObjectMapping: 0.146300 ms MarkObjects: 11.676900 ms DeleteObjects: 0.045300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 155.057916 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs + artifactKey: Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs using Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b630c7edbdb10d034f40d294fe059ef9') in 0.010363 seconds + Import took 0.035835 seconds . + +======================================================================== +Received Import Request. + Time since last request: 133.570846 seconds. + path: Assets/Group1/Scripts/Refactoring/GameOverScreen.cs + artifactKey: Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/GameOverScreen.cs using Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41ed12fbd7372c67f8cef2fc6f865189') in 0.017203 seconds + Import took 0.026528 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005781 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.572 seconds +Domain Reload Profiling: + ReloadAssembly (1573ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1299ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (450ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (56ms) + SetupLoadedEditorAssemblies (515ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (323ms) + ProcessInitializeOnLoadMethodAttributes (49ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2404. +Total: 11.584500 ms (FindLiveObjects: 0.409600 ms CreateObjectMapping: 0.141100 ms MarkObjects: 10.988200 ms DeleteObjects: 0.043200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 62.348849 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs + artifactKey: Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs using Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5f8233da5bd4b5f51a7c6eeb16f6366') in 0.015481 seconds + Import took 0.021536 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006342 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.716 seconds +Domain Reload Profiling: + ReloadAssembly (1717ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1456ms) + LoadAssemblies (142ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (538ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (91ms) + SetupLoadedEditorAssemblies (511ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (325ms) + ProcessInitializeOnLoadMethodAttributes (48ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.09 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2406. +Total: 10.062400 ms (FindLiveObjects: 0.310200 ms CreateObjectMapping: 0.078200 ms MarkObjects: 9.621000 ms DeleteObjects: 0.051200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 51.384372 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs + artifactKey: Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/Enemy.cs using Guid(a75e6af668eb97d44862062acfcb9dda) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1a95bd941b0071c7a9d7038bbe4d42e') in 0.009240 seconds + Import took 0.032550 seconds . + +======================================================================== +Received Import Request. + Time since last request: 284.322964 seconds. + path: Assets/Group1/Scripts/GameController.cs + artifactKey: Guid(cd6d0074e725a114e850d2e604fe4b0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/GameController.cs using Guid(cd6d0074e725a114e850d2e604fe4b0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aeb61005de3482c01687c0ad42c43ee4') in 0.018197 seconds + Import took 0.026098 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.031549 seconds. + path: Assets/Group1/Scripts/GameController.cs + artifactKey: Guid(cd6d0074e725a114e850d2e604fe4b0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/GameController.cs using Guid(cd6d0074e725a114e850d2e604fe4b0d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aeb61005de3482c01687c0ad42c43ee4') in 0.006023 seconds + Import took 0.013631 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005843 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.51 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.948 seconds +Domain Reload Profiling: + ReloadAssembly (1948ms) + BeginReloadAssembly (213ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1583ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (414ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (96ms) + SetupLoadedEditorAssemblies (678ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (232ms) + ProcessInitializeOnLoadAttributes (359ms) + ProcessInitializeOnLoadMethodAttributes (56ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2408. +Total: 11.051200 ms (FindLiveObjects: 0.335500 ms CreateObjectMapping: 0.127600 ms MarkObjects: 10.544200 ms DeleteObjects: 0.040900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005385 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.53 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.598 seconds +Domain Reload Profiling: + ReloadAssembly (1598ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1327ms) + LoadAssemblies (133ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (414ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (60ms) + SetupLoadedEditorAssemblies (558ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (354ms) + ProcessInitializeOnLoadMethodAttributes (52ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.04 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2410. +Total: 10.875900 ms (FindLiveObjects: 0.734100 ms CreateObjectMapping: 0.112500 ms MarkObjects: 9.943300 ms DeleteObjects: 0.081500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 599.952732 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs + artifactKey: Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs using Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '753e67ef631af18ea5511580e84bbaa1') in 0.029995 seconds + Import took 0.043433 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008980 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.727 seconds +Domain Reload Profiling: + ReloadAssembly (1728ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1451ms) + LoadAssemblies (149ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (529ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (560ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (152ms) + ProcessInitializeOnLoadAttributes (339ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.89 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1968 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2413. +Total: 9.842500 ms (FindLiveObjects: 0.336800 ms CreateObjectMapping: 0.124900 ms MarkObjects: 9.330500 ms DeleteObjects: 0.047800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.007035 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.95 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.643 seconds +Domain Reload Profiling: + ReloadAssembly (1644ms) + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (49ms) + EndReloadAssembly (1391ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (448ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (531ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (340ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1968 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2415. +Total: 14.373000 ms (FindLiveObjects: 0.342700 ms CreateObjectMapping: 0.149300 ms MarkObjects: 13.820100 ms DeleteObjects: 0.058700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 316.271669 seconds. + path: Assets/Group1/Scripts/Refactoring/SpeedBooster.cs + artifactKey: Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/SpeedBooster.cs using Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d986a72fcf428c180f4eb0ad7f107da') in 0.031350 seconds + Import took 0.039859 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005148 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.644 seconds +Domain Reload Profiling: + ReloadAssembly (1644ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1375ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (447ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (564ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (369ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.71 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1969 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2418. +Total: 9.470100 ms (FindLiveObjects: 0.356400 ms CreateObjectMapping: 0.127900 ms MarkObjects: 8.933600 ms DeleteObjects: 0.049600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005148 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.65 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.583 seconds +Domain Reload Profiling: + ReloadAssembly (1584ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (48ms) + EndReloadAssembly (1305ms) + LoadAssemblies (129ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (404ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (540ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (336ms) + ProcessInitializeOnLoadMethodAttributes (56ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1969 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2420. +Total: 10.627400 ms (FindLiveObjects: 0.355500 ms CreateObjectMapping: 0.181800 ms MarkObjects: 10.043900 ms DeleteObjects: 0.043900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 188.650690 seconds. + path: Assets/Group1/Scripts/NewBehaviourScript1.cs + artifactKey: Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/NewBehaviourScript1.cs using Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31388e947b7fb83a8172d2bfb9bf05b1') in 0.011697 seconds + Import took 0.036618 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.008823 seconds. + path: Assets/Group1/Scripts/NewBehaviourScript1.cs + artifactKey: Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/NewBehaviourScript1.cs using Guid(dede9e7d6741aea4cb07b98da83cc6a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31388e947b7fb83a8172d2bfb9bf05b1') in 0.006508 seconds + Import took 0.011696 seconds . + +======================================================================== +Received Import Request. + Time since last request: 68.246981 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs + artifactKey: Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs using Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9123c587a95353a9bb71a05d2988877') in 0.007752 seconds + Import took 0.032420 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005894 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.54 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.837 seconds +Domain Reload Profiling: + ReloadAssembly (1838ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1554ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (514ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (618ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (150ms) + ProcessInitializeOnLoadAttributes (384ms) + ProcessInitializeOnLoadMethodAttributes (57ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.45 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1969 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2422. +Total: 14.461800 ms (FindLiveObjects: 0.326700 ms CreateObjectMapping: 0.130000 ms MarkObjects: 13.943600 ms DeleteObjects: 0.059100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 1701.772782 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4c2f3d7ed0103f3e5874aaa1f53b0b5') in 0.008373 seconds + Import took 0.015077 seconds . + +======================================================================== +Received Import Request. + Time since last request: 11.009740 seconds. + path: Assets/Group1/Scripts/Refactoring/Spawner.cs + artifactKey: Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Spawner.cs using Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75c0a9376db93fa763f6b19b2244d13d') in 0.016143 seconds + Import took 0.028925 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005292 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.610 seconds +Domain Reload Profiling: + ReloadAssembly (1611ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1356ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (439ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (327ms) + ProcessInitializeOnLoadMethodAttributes (55ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2425. +Total: 12.333100 ms (FindLiveObjects: 0.260700 ms CreateObjectMapping: 0.072100 ms MarkObjects: 11.948200 ms DeleteObjects: 0.049500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 293.163519 seconds. + path: Assets/Group1/Scripts/Refactoring/SpeedBooster.cs + artifactKey: Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/SpeedBooster.cs using Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b36f02b874ec66cd5d90735460f8df10') in 0.014821 seconds + Import took 0.037671 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005612 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.576 seconds +Domain Reload Profiling: + ReloadAssembly (1576ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1297ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (509ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (322ms) + ProcessInitializeOnLoadMethodAttributes (44ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.00 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2427. +Total: 10.217400 ms (FindLiveObjects: 0.259200 ms CreateObjectMapping: 0.070000 ms MarkObjects: 9.841300 ms DeleteObjects: 0.045100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 792.581440 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1aafd59bb8323c90879c5bcee948d577') in 0.171012 seconds + Import took 0.178992 seconds . + +======================================================================== +Received Import Request. + Time since last request: 51.341314 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '760e9288105e5889f842797fe48b66dc') in 0.019485 seconds + Import took 0.026508 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.233417 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85551e03808562eff4617196499e31f7') in 0.083754 seconds + Import took 0.090047 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.005002 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85551e03808562eff4617196499e31f7') in 0.020726 seconds + Import took 0.028517 seconds . + +======================================================================== +Received Import Request. + Time since last request: 6.164062 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '471012c7c2eec4f07dd7bf3948fc8eb9') in 0.018379 seconds + Import took 0.027557 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.011513 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '471012c7c2eec4f07dd7bf3948fc8eb9') in 0.017698 seconds + Import took 0.024685 seconds . + +======================================================================== +Received Import Request. + Time since last request: 2.214755 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64b89602075e7ac646de8f32e85c892c') in 0.019340 seconds + Import took 0.026956 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.010144 seconds. + path: Assets/Group1/Scripts/Refactoring/Booster.prefab + artifactKey: Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Booster.prefab using Guid(ac5b2c53065986a4187a5dfaf6fa212d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64b89602075e7ac646de8f32e85c892c') in 0.019395 seconds + Import took 0.027539 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.005444 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.627 seconds +Domain Reload Profiling: + ReloadAssembly (1628ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1336ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (546ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (11ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (333ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.2 MB. +System memory in use after: 84.3 MB. + +Unloading 48 unused Assets to reduce memory usage. Loaded Objects now: 2434. +Total: 10.785700 ms (FindLiveObjects: 0.337600 ms CreateObjectMapping: 0.080600 ms MarkObjects: 10.309600 ms DeleteObjects: 0.055200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 60.815318 seconds. + path: Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab + artifactKey: Guid(4db44269a74175b488caa67c577b6475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab using Guid(4db44269a74175b488caa67c577b6475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f793b52602cfcc5ac7ac4b46d9cad25') in 0.078129 seconds + Import took 0.083212 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006313 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.59 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.333 seconds +Domain Reload Profiling: + ReloadAssembly (2334ms) + BeginReloadAssembly (248ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + EndReloadAssembly (1910ms) + LoadAssemblies (207ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (644ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (88ms) + SetupLoadedEditorAssemblies (743ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (210ms) + ProcessInitializeOnLoadAttributes (445ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.61 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.2 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2437. +Total: 9.813800 ms (FindLiveObjects: 0.492600 ms CreateObjectMapping: 0.166700 ms MarkObjects: 9.106500 ms DeleteObjects: 0.045700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.006191 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.14 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.603 seconds +Domain Reload Profiling: + ReloadAssembly (1604ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1334ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (431ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (57ms) + SetupLoadedEditorAssemblies (555ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (368ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.2 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2439. +Total: 9.704200 ms (FindLiveObjects: 0.363500 ms CreateObjectMapping: 0.159600 ms MarkObjects: 9.136700 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006164 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.579 seconds +Domain Reload Profiling: + ReloadAssembly (1580ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (46ms) + EndReloadAssembly (1302ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (423ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (61ms) + SetupLoadedEditorAssemblies (525ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (332ms) + ProcessInitializeOnLoadMethodAttributes (52ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2441. +Total: 9.264100 ms (FindLiveObjects: 0.262200 ms CreateObjectMapping: 0.071900 ms MarkObjects: 8.885100 ms DeleteObjects: 0.042900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005844 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.54 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.196 seconds +Domain Reload Profiling: + ReloadAssembly (2196ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1884ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (678ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (88ms) + SetupLoadedEditorAssemblies (697ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (213ms) + ProcessInitializeOnLoadAttributes (408ms) + ProcessInitializeOnLoadMethodAttributes (47ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2443. +Total: 15.336900 ms (FindLiveObjects: 0.377300 ms CreateObjectMapping: 0.121500 ms MarkObjects: 14.765600 ms DeleteObjects: 0.069100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005105 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.96 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.706 seconds +Domain Reload Profiling: + ReloadAssembly (1707ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (1454ms) + LoadAssemblies (194ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (481ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (546ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (143ms) + ProcessInitializeOnLoadAttributes (339ms) + ProcessInitializeOnLoadMethodAttributes (42ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.27 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2445. +Total: 9.421000 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.163300 ms MarkObjects: 8.838300 ms DeleteObjects: 0.044300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.006837 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.027 seconds +Domain Reload Profiling: + ReloadAssembly (2027ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1721ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (650ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (573ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (153ms) + ProcessInitializeOnLoadAttributes (348ms) + ProcessInitializeOnLoadMethodAttributes (52ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.61 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2447. +Total: 11.273100 ms (FindLiveObjects: 0.283300 ms CreateObjectMapping: 0.072300 ms MarkObjects: 10.868500 ms DeleteObjects: 0.046100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 311.190097 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73a7712df4ecdb518c15a334da206f29') in 0.105136 seconds + Import took 0.132223 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006433 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.97 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.699 seconds +Domain Reload Profiling: + ReloadAssembly (1701ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + EndReloadAssembly (1408ms) + LoadAssemblies (141ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (455ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (571ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (370ms) + ProcessInitializeOnLoadMethodAttributes (45ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2450. +Total: 15.779000 ms (FindLiveObjects: 0.512400 ms CreateObjectMapping: 0.177000 ms MarkObjects: 15.008000 ms DeleteObjects: 0.079100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 115.598510 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d5eef4f565f9018c4a61fd3220a60e6') in 0.125336 seconds + Import took 0.133814 seconds . + +======================================================================== +Received Import Request. + Time since last request: 4.943967 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6cc4da3ee561a696968255aa6e158f3') in 0.019587 seconds + Import took 0.026468 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.020216 seconds. + path: Assets/Group1/Scripts/Refactoring/enemy.prefab + artifactKey: Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/enemy.prefab using Guid(7af1c29eccfca9d429f1d2cd29ad20ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6cc4da3ee561a696968255aa6e158f3') in 0.018224 seconds + Import took 0.024685 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.008806 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.555 seconds +Domain Reload Profiling: + ReloadAssembly (1556ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1301ms) + LoadAssemblies (137ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (423ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (518ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (330ms) + ProcessInitializeOnLoadMethodAttributes (46ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.01 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2453. +Total: 10.056900 ms (FindLiveObjects: 0.329300 ms CreateObjectMapping: 0.127500 ms MarkObjects: 9.548000 ms DeleteObjects: 0.049700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.004045 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 2 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 (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + EndReloadAssembly (1242ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (335ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (40ms) + SetupLoadedEditorAssemblies (632ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (95ms) + ProcessInitializeOnLoadAttributes (457ms) + ProcessInitializeOnLoadMethodAttributes (57ms) + AfterProcessingInitializeOnLoad (15ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.54 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.4 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2455. +Total: 15.241600 ms (FindLiveObjects: 0.347800 ms CreateObjectMapping: 0.131200 ms MarkObjects: 14.692600 ms DeleteObjects: 0.066800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005693 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.32 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.802 seconds +Domain Reload Profiling: + ReloadAssembly (1803ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1498ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (482ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (607ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (381ms) + ProcessInitializeOnLoadMethodAttributes (57ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (13ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.12 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.5 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2457. +Total: 10.992700 ms (FindLiveObjects: 0.527600 ms CreateObjectMapping: 0.139600 ms MarkObjects: 10.280600 ms DeleteObjects: 0.042500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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.005159 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.99 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.605 seconds +Domain Reload Profiling: + ReloadAssembly (1606ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + EndReloadAssembly (1332ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (418ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (534ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (332ms) + ProcessInitializeOnLoadMethodAttributes (50ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (11ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.15 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.5 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2459. +Total: 12.500500 ms (FindLiveObjects: 0.332900 ms CreateObjectMapping: 0.131400 ms MarkObjects: 11.990700 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009186 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 1.52 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.554 seconds +Domain Reload Profiling: + ReloadAssembly (2555ms) + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + EndReloadAssembly (2132ms) + LoadAssemblies (212ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (689ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (97ms) + SetupLoadedEditorAssemblies (881ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (2ms) + BeforeProcessingInitializeOnLoad (215ms) + ProcessInitializeOnLoadAttributes (546ms) + ProcessInitializeOnLoadMethodAttributes (88ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (1ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 1.76 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.3 MB. +System memory in use after: 84.5 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2461. +Total: 15.545600 ms (FindLiveObjects: 0.343000 ms CreateObjectMapping: 0.122200 ms MarkObjects: 15.010400 ms DeleteObjects: 0.067300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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 -> +AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log new file mode 100644 index 00000000..6be372dc --- /dev/null +++ b/Logs/AssetImportWorker0.log @@ -0,0 +1,514 @@ +Using pre-set license +Built from '2020.3/staging' branch; Version is '2020.3.18f1 (a7d1c678663c) revision 10998214'; Using compiler version '192528614'; Build Type 'Release' +OS: 'Windows 10 Pro; OS build 19044.1620; Version 2009; 64bit' Language: 'ru' Physical Memory: 7541 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2020.3.18f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +C:/Users/Артемий/Documents/GitHub/SHK-Unity +-logFile +Logs/AssetImportWorker0.log +-srvPort +57833 +Successfully changed project path to: C:/Users/Артемий/Documents/GitHub/SHK-Unity +C:/Users/Артемий/Documents/GitHub/SHK-Unity +Using Asset Import Pipeline V2. +Refreshing native plugins compatible for Editor in 51.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2020.3.18f1 (a7d1c678663c) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Users/Артемий/Documents/GitHub/SHK-Unity/Assets +GfxDevice: creating device client; threaded=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: AMD Radeon(TM) Graphics (ID=0x1636) + Vendor: + VRAM: 3770 MB + Driver: 27.20.21030.1005 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56348 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll +Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.001971 seconds. +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 41.04 ms, found 2 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 (46ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (374ms) + LoadAssemblies (44ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (127ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (28ms) + SetupLoadedEditorAssemblies (156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (41ms) + BeforeProcessingInitializeOnLoad (14ms) + ProcessInitializeOnLoadAttributes (72ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.003491 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.68 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.964 seconds +Domain Reload Profiling: + ReloadAssembly (965ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (20ms) + EndReloadAssembly (777ms) + LoadAssemblies (76ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (242ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (83ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (6ms) + 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.85 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1976 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 81.2 MB. +System memory in use after: 81.3 MB. + +Unloading 56 unused Assets to reduce memory usage. Loaded Objects now: 2382. +Total: 6.416800 ms (FindLiveObjects: 0.273600 ms CreateObjectMapping: 0.088800 ms MarkObjects: 5.953900 ms DeleteObjects: 0.098100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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/Group1/Scripts/Refactoring/GameOverScreen.prefab + artifactKey: Guid(4db44269a74175b488caa67c577b6475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/GameOverScreen.prefab using Guid(4db44269a74175b488caa67c577b6475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54da7c3ee2ee280c7dd198e91a63817a') in 0.109581 seconds + Import took 0.113665 seconds . + +======================================================================== +Received Import Request. + Time since last request: 13.814215 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c48fdf8bdcfa71088b1189c252deb19') in 0.014405 seconds + Import took 0.018668 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.018334 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/Player.cs + artifactKey: Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/Player.cs using Guid(f38088792c4411e48871f2810f11d11d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c48fdf8bdcfa71088b1189c252deb19') in 0.004464 seconds + Import took 0.008058 seconds . + +======================================================================== +Received Import Request. + Time since last request: 8.856129 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs + artifactKey: Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerCollisionHandler.cs using Guid(c861f4e9875fadb40853e19d5c6beee0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '07e713103bc87291643ec3c8697e5e09') in 0.008310 seconds + Import took 0.012431 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003801 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.923 seconds +Domain Reload Profiling: + ReloadAssembly (924ms) + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (760ms) + LoadAssemblies (84ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (253ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (71ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.1 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2391. +Total: 6.430000 ms (FindLiveObjects: 0.265200 ms CreateObjectMapping: 0.090700 ms MarkObjects: 6.035900 ms DeleteObjects: 0.036700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 98.237497 seconds. + path: Assets/Group1/Scripts/Refactoring/GameOverScreen.cs + artifactKey: Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/GameOverScreen.cs using Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb8b27f689f08a0c3ad4174736697bba') in 0.007238 seconds + Import took 0.011480 seconds . + +======================================================================== +Received Import Request. + Time since last request: 3.823600 seconds. + path: Assets/Group1/Scripts/Refactoring/Spawner.cs + artifactKey: Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Spawner.cs using Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92b819bfc6a90655cf2cab7f61ee5ac2') in 0.007812 seconds + Import took 0.011390 seconds . + +======================================================================== +Received Import Request. + Time since last request: 0.018857 seconds. + path: Assets/Group1/Scripts/Refactoring/Spawner.cs + artifactKey: Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Spawner.cs using Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92b819bfc6a90655cf2cab7f61ee5ac2') in 0.003430 seconds + Import took 0.006981 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003248 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.946 seconds +Domain Reload Profiling: + ReloadAssembly (947ms) + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (781ms) + LoadAssemblies (79ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (252ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (84ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2393. +Total: 6.367100 ms (FindLiveObjects: 0.218700 ms CreateObjectMapping: 0.087600 ms MarkObjects: 6.021900 ms DeleteObjects: 0.037300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 107.295319 seconds. + path: Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs + artifactKey: Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Enemy/EnemyMover.cs using Guid(370dba03cde8093468f6423500dc2303) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6717ed961c7e8e867bb1fa4dbfb30cae') in 0.009623 seconds + Import took 0.014682 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003352 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.982 seconds +Domain Reload Profiling: + ReloadAssembly (983ms) + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (816ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (254ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (74ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (32ms) + AfterProcessingInitializeOnLoad (7ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.72 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2395. +Total: 5.872300 ms (FindLiveObjects: 0.214800 ms CreateObjectMapping: 0.050600 ms MarkObjects: 5.572600 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:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 115.418516 seconds. + path: Assets/Group1/Scripts/Refactoring/GameOverScreen.cs + artifactKey: Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/GameOverScreen.cs using Guid(757c3f85ec0ecb042a911e2d1e9a48c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3876b7b75049aee53bd134a1679197c3') in 0.005693 seconds + Import took 0.009654 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003274 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.007 seconds +Domain Reload Profiling: + ReloadAssembly (1007ms) + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (841ms) + LoadAssemblies (81ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (285ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (36ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.81 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2397. +Total: 6.571800 ms (FindLiveObjects: 0.264300 ms CreateObjectMapping: 0.088000 ms MarkObjects: 6.165200 ms DeleteObjects: 0.052100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 19.829826 seconds. + path: Assets/Group1/Scripts/Refactoring/Spawner.cs + artifactKey: Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Spawner.cs using Guid(9ceea5a99863b8d40b503741e105660f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e02e3f7a16ddb3cc47a2f7c559526b4') in 0.006143 seconds + Import took 0.012003 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003361 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.75 ms, found 2 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 (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + EndReloadAssembly (814ms) + LoadAssemblies (91ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (273ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (41ms) + SetupLoadedEditorAssemblies (316ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (76ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (31ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.75 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2399. +Total: 7.325600 ms (FindLiveObjects: 0.271800 ms CreateObjectMapping: 0.088900 ms MarkObjects: 6.916200 ms DeleteObjects: 0.046700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 21.263400 seconds. + path: Assets/Group1/Scripts/Refactoring/SpeedBooster.cs + artifactKey: Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/SpeedBooster.cs using Guid(46d0070567e59024fbd197b65e33044b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01506ab8b3d4e602cb601d26d4e316af') in 0.009438 seconds + Import took 0.013293 seconds . + +======================================================================== +Received Import Request. + Time since last request: 24.625235 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs + artifactKey: Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs using Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f91ae24aa6c641a3ce50cb79ed4c4b37') in 0.008838 seconds + Import took 0.013491 seconds . + diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-AssetImportWorker0.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/Logs/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log new file mode 100644 index 00000000..358d6bf8 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.18f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Packages/manifest.json b/Packages/manifest.json index 8392bea1..fe117f6d 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,12 +1,21 @@ { "dependencies": { - "com.unity.ads": "2.0.8", - "com.unity.analytics": "3.2.2", - "com.unity.collab-proxy": "1.2.15", - "com.unity.package-manager-ui": "2.0.7", - "com.unity.purchasing": "2.0.3", - "com.unity.textmeshpro": "1.3.0", + "com.unity.2d.sprite": "1.0.0", + "com.unity.2d.tilemap": "1.0.0", + "com.unity.ads": "3.7.5", + "com.unity.analytics": "3.6.11", + "com.unity.collab-proxy": "1.9.0", + "com.unity.ide.rider": "2.0.7", + "com.unity.ide.visualstudio": "2.0.11", + "com.unity.ide.vscode": "1.2.3", + "com.unity.purchasing": "3.2.2", + "com.unity.test-framework": "1.1.29", + "com.unity.textmeshpro": "3.0.6", + "com.unity.timeline": "1.4.8", + "com.unity.ugui": "1.0.0", + "com.unity.xr.legacyinputhelpers": "2.1.8", "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", "com.unity.modules.assetbundle": "1.0.0", "com.unity.modules.audio": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 00000000..79ca691d --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,391 @@ +{ + "dependencies": { + "com.unity.2d.sprite": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.2d.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.ads": { + "version": "3.7.5", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.analytics": { + "version": "3.6.11", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "1.9.0", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "2.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.11", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.3", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.purchasing": { + "version": "3.2.2", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.androidjni": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.29", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "3.0.6", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.4.8", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.xr.legacyinputhelpers": { + "version": "2.1.8", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 00000000..be4a7974 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + 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: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreviewPackages: 0 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 6dfd6c14..56502515 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1 +1,2 @@ -m_EditorVersion: 2018.3.14f1 +m_EditorVersion: 2020.3.18f1 +m_EditorVersionWithRevision: 2020.3.18f1 (a7d1c678663c) diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 00000000..dca28814 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset new file mode 100644 index 00000000..aae3070b --- /dev/null +++ b/UserSettings/EditorUserSettings.asset @@ -0,0 +1,24 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!162 &1 +EditorUserSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_ConfigSettings: + RecentlyUsedScenePath-0: + value: 224247031146467c1f011932416c6c1313191d3963032f3c2108113fc7ee3135ebe225a7f234362820 + flags: 0 + vcSharedLogLevel: + value: 0d5e400f0650 + flags: 0 + m_VCAutomaticAdd: 1 + m_VCDebugCom: 0 + m_VCDebugCmd: 0 + m_VCDebugOut: 0 + m_SemanticMergeMode: 2 + m_VCShowFailedCheckout: 1 + m_VCOverwriteFailedCheckoutAssets: 1 + m_VCProjectOverlayIcons: 1 + m_VCHierarchyOverlayIcons: 1 + m_VCOtherOverlayIcons: 1 + m_VCAllowAsyncUpdate: 1 From dc0cb9289d1bd89a9d800be249e6fb257923ed84 Mon Sep 17 00:00:00 2001 From: Artemii0056 Date: Mon, 11 Apr 2022 19:08:25 +0500 Subject: [PATCH 2/2] Refactoring --- Assets/Group1/Scripts/GameController.cs | 38 ----- Assets/Group1/Scripts/GameController.cs.meta | 11 -- Assets/Group1/Scripts/NewBehaviourScript1.cs | 64 --------- .../Scripts/NewBehaviourScript1.cs.meta | 11 -- Assets/Group1/Scripts/e.cs | 22 --- Assets/Group1/Scripts/e.cs.meta | 11 -- Logs/AssetImportWorker0.log | 130 ++++++++++++++++++ 7 files changed, 130 insertions(+), 157 deletions(-) delete mode 100644 Assets/Group1/Scripts/GameController.cs delete mode 100644 Assets/Group1/Scripts/GameController.cs.meta delete mode 100644 Assets/Group1/Scripts/NewBehaviourScript1.cs delete mode 100644 Assets/Group1/Scripts/NewBehaviourScript1.cs.meta delete mode 100644 Assets/Group1/Scripts/e.cs delete mode 100644 Assets/Group1/Scripts/e.cs.meta diff --git a/Assets/Group1/Scripts/GameController.cs b/Assets/Group1/Scripts/GameController.cs deleted file mode 100644 index 6afe5356..00000000 --- a/Assets/Group1/Scripts/GameController.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; - -public class GameController : MonoBehaviour -{ - public static GameController controller; - - public GameObject go; - public GameObject a; - public GameObject[] B; - - // Start is called before the first frame update - void Start() - { - controller = this; - } - - public void End() - { - go.SetActive(true); - } - - // Update is called once per frame - void Update(){ - foreach (var b in B) - { - if (b == null) - continue; - - if (Vector3.Distance(a.gameObject.gameObject.GetComponent().position, b.gameObject.gameObject.transform.position) < 0.2f) - { - a.SendMessage("SendMEssage", b); - } - - } - } -} diff --git a/Assets/Group1/Scripts/GameController.cs.meta b/Assets/Group1/Scripts/GameController.cs.meta deleted file mode 100644 index e9cd6afe..00000000 --- a/Assets/Group1/Scripts/GameController.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: cd6d0074e725a114e850d2e604fe4b0d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Group1/Scripts/NewBehaviourScript1.cs b/Assets/Group1/Scripts/NewBehaviourScript1.cs deleted file mode 100644 index 9c13cf9c..00000000 --- a/Assets/Group1/Scripts/NewBehaviourScript1.cs +++ /dev/null @@ -1,64 +0,0 @@ -using UnityEngine; -using System.Collections; - -public class NewBehaviourScript1 : MonoBehaviour -{ - public float spEed; - public bool timer; - public float time; - // Use this for initialization - - - void Start() - { - } - // Update is called once per frame - void Update(){ - if (timer) - { - time -= Time.deltaTime; - if(time < 0) - { - timer = false; - spEed /= 2; - } - } - - GameObject[] result = GameObject.FindGameObjectsWithTag("Enemy"); - - if(result.Length == 0) - { - GameController.controller.End(); - enabled = false; - } - - if (Input.GetKey(KeyCode.W)) - transform.Translate(0, spEed * Time.deltaTime, 0); - - if (Input.GetKey(KeyCode.S)) - transform.Translate(0, -spEed * Time.deltaTime, 0); - - if (Input.GetKey(KeyCode.A)) - transform.Translate(-spEed * Time.deltaTime, 0, 0); - - if (Input.GetKey(KeyCode.D)) - transform.Translate(spEed * Time.deltaTime, 0, 0); - } - - public void SendMEssage(GameObject b) - { - - - if(b.name == "enemy") - { - Destroy(b); - } - - if(b.name == "speed") - { - spEed *= 2; - timer = true; - time = 2; - } - } -} diff --git a/Assets/Group1/Scripts/NewBehaviourScript1.cs.meta b/Assets/Group1/Scripts/NewBehaviourScript1.cs.meta deleted file mode 100644 index c96b73f8..00000000 --- a/Assets/Group1/Scripts/NewBehaviourScript1.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dede9e7d6741aea4cb07b98da83cc6a8 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Group1/Scripts/e.cs b/Assets/Group1/Scripts/e.cs deleted file mode 100644 index 048ebf2d..00000000 --- a/Assets/Group1/Scripts/e.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; - -public class e : MonoBehaviour -{ - private Vector3 Target; - - // Start is called before the first frame update - void Start() - { - Target = Random.insideUnitCircle * 4; - } - - // Update is called once per frame - void Update() - { - transform.position = Vector3.MoveTowards(transform.position, Target, 2 * Time.deltaTime); - if (transform.position == Target) - Target = Random.insideUnitCircle * 4 ; - } -} diff --git a/Assets/Group1/Scripts/e.cs.meta b/Assets/Group1/Scripts/e.cs.meta deleted file mode 100644 index ab764d30..00000000 --- a/Assets/Group1/Scripts/e.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 65f7df4705b7dae48944a39b48934484 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 6be372dc..eb5ee9de 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -512,3 +512,133 @@ Received Import Request. Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerInput.cs using Guid(15454b9fa3a653c4c9c01e634f7c1db4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f91ae24aa6c641a3ce50cb79ed4c4b37') in 0.008838 seconds Import took 0.013491 seconds . +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003425 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.923 seconds +Domain Reload Profiling: + ReloadAssembly (924ms) + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + EndReloadAssembly (759ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (240ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (73ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (5ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1970 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.1 MB. +System memory in use after: 84.2 MB. + +Unloading 47 unused Assets to reduce memory usage. Loaded Objects now: 2401. +Total: 6.139400 ms (FindLiveObjects: 0.282500 ms CreateObjectMapping: 0.093600 ms MarkObjects: 5.726200 ms DeleteObjects: 0.035000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 361.404563 seconds. + path: Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs + artifactKey: Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/Scripts/Refactoring/Player/PlayerMover.cs using Guid(2319940fd4af6884fbc386bd6e405df0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'afff936c55ff28b490f416ca415f0800') in 0.009667 seconds + Import took 0.015431 seconds . + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004588 seconds. +Begin MonoManager ReloadAssembly +Native extension for WindowsStandalone target not found +Native extension for WebGL target not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.020 seconds +Domain Reload Profiling: + ReloadAssembly (1021ms) + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + EndReloadAssembly (784ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (255ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (310ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (1ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (30ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 0.71 ms, found 2 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 1967 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 84.0 MB. +System memory in use after: 84.2 MB. + +Unloading 50 unused Assets to reduce memory usage. Loaded Objects now: 2400. +Total: 6.179200 ms (FindLiveObjects: 0.263400 ms CreateObjectMapping: 0.047500 ms MarkObjects: 5.791700 ms DeleteObjects: 0.073700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: 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: 7.269879 seconds. + path: Assets/Group1/enemy.png + artifactKey: Guid(c393ddce902166c4fb0e2130d216d549) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Group1/enemy.png using Guid(c393ddce902166c4fb0e2130d216d549) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ba5cad126e070374b74c995eeb6c6da') in 0.097321 seconds + Import took 0.101118 seconds . +