From 22b61cd08f59b81c6fa6f40671090470b9f9742b Mon Sep 17 00:00:00 2001 From: 7ubi Date: Fri, 4 Jun 2021 21:48:24 +0200 Subject: [PATCH] noise changes --- Assets/Biomes.meta | 8 + Assets/Biomes/Desert.asset | 29 + Assets/Biomes/Desert.asset.meta | 8 + Assets/Biomes/Forest.asset | 29 + Assets/Biomes/Forest.asset.meta | 8 + Assets/Biomes/Grassland.asset | 29 + Assets/Biomes/Grassland.asset.meta | 8 + Assets/Biomes/Snowland.asset | 29 + Assets/Biomes/Snowland.asset.meta | 8 + Assets/Scenes/Game.unity | 60 +- Assets/Scripts/World/Biome.cs | 36 +- Assets/Scripts/World/MeshCreation.cs | 12 +- Assets/Scripts/World/Noise.cs | 40 + Assets/Scripts/World/Noise.cs.meta | 11 + Assets/Scripts/World/worldCreation.cs | 36 +- Logs/AssetImportWorker0-prev.log | 1390 +--------- Logs/AssetImportWorker0.log | 2398 ++++++++++++++++- ...hadercompiler-UnityShaderCompiler.exe0.log | 6 + ...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 + 25 files changed, 2654 insertions(+), 1512 deletions(-) create mode 100644 Assets/Biomes.meta create mode 100644 Assets/Biomes/Desert.asset create mode 100644 Assets/Biomes/Desert.asset.meta create mode 100644 Assets/Biomes/Forest.asset create mode 100644 Assets/Biomes/Forest.asset.meta create mode 100644 Assets/Biomes/Grassland.asset create mode 100644 Assets/Biomes/Grassland.asset.meta create mode 100644 Assets/Biomes/Snowland.asset create mode 100644 Assets/Biomes/Snowland.asset.meta create mode 100644 Assets/Scripts/World/Noise.cs create mode 100644 Assets/Scripts/World/Noise.cs.meta 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 diff --git a/Assets/Biomes.meta b/Assets/Biomes.meta new file mode 100644 index 0000000..7024e54 --- /dev/null +++ b/Assets/Biomes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46888933f1f83884ba1bf052e9ed971f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Biomes/Desert.asset b/Assets/Biomes/Desert.asset new file mode 100644 index 0000000..13d1c12 --- /dev/null +++ b/Assets/Biomes/Desert.asset @@ -0,0 +1,29 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56e72c31f97d0dc439a7bfd446a902f6, type: 3} + m_Name: Desert + m_EditorClassIdentifier: + name: Desert + scale: 90 + octaves: 4 + persistance: 0.6 + lacunarity: 2 + maxGeneratingHeight: 50 + amplitude: 20 + offset: {x: 149837, y: -27634} + topBlock: 7 + secondaryBlock: 7 + vegetationThreshold: 0.01 + minVegetationHeight: 3 + maxVegetationHeight: 8 + hasTree: 0 + hasCactus: 1 diff --git a/Assets/Biomes/Desert.asset.meta b/Assets/Biomes/Desert.asset.meta new file mode 100644 index 0000000..3d051ae --- /dev/null +++ b/Assets/Biomes/Desert.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b42d1ee036fcb146ab5a0bab05c576c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Biomes/Forest.asset b/Assets/Biomes/Forest.asset new file mode 100644 index 0000000..1e6d8da --- /dev/null +++ b/Assets/Biomes/Forest.asset @@ -0,0 +1,29 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56e72c31f97d0dc439a7bfd446a902f6, type: 3} + m_Name: Forest + m_EditorClassIdentifier: + name: Forest + scale: 90 + octaves: 4 + persistance: 0.7 + lacunarity: 2 + maxGeneratingHeight: 70 + amplitude: 30 + offset: {x: 41124, y: 14231} + topBlock: 2 + secondaryBlock: 1 + vegetationThreshold: 0.064 + minVegetationHeight: 3 + maxVegetationHeight: 6 + hasTree: 1 + hasCactus: 0 diff --git a/Assets/Biomes/Forest.asset.meta b/Assets/Biomes/Forest.asset.meta new file mode 100644 index 0000000..0a23bdb --- /dev/null +++ b/Assets/Biomes/Forest.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 24dac4f41998bca40be4aef18ef05680 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Biomes/Grassland.asset b/Assets/Biomes/Grassland.asset new file mode 100644 index 0000000..a798c21 --- /dev/null +++ b/Assets/Biomes/Grassland.asset @@ -0,0 +1,29 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56e72c31f97d0dc439a7bfd446a902f6, type: 3} + m_Name: Grassland + m_EditorClassIdentifier: + name: Grassland + scale: 80 + octaves: 4 + persistance: 0.7 + lacunarity: 2 + maxGeneratingHeight: 70 + amplitude: 30 + offset: {x: 83274, y: 0.2} + topBlock: 2 + secondaryBlock: 1 + vegetationThreshold: 0.01 + minVegetationHeight: 3 + maxVegetationHeight: 6 + hasTree: 1 + hasCactus: 0 diff --git a/Assets/Biomes/Grassland.asset.meta b/Assets/Biomes/Grassland.asset.meta new file mode 100644 index 0000000..d9942c1 --- /dev/null +++ b/Assets/Biomes/Grassland.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 109345ddce309d24bb651d0ac0ad414b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Biomes/Snowland.asset b/Assets/Biomes/Snowland.asset new file mode 100644 index 0000000..830b965 --- /dev/null +++ b/Assets/Biomes/Snowland.asset @@ -0,0 +1,29 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 56e72c31f97d0dc439a7bfd446a902f6, type: 3} + m_Name: Snowland + m_EditorClassIdentifier: + name: Snowland + scale: 50 + octaves: 5 + persistance: 0.8 + lacunarity: 3 + maxGeneratingHeight: 165 + amplitude: 40 + offset: {x: 214, y: 43} + topBlock: 6 + secondaryBlock: 1 + vegetationThreshold: 0.01 + minVegetationHeight: 3 + maxVegetationHeight: 7 + hasTree: 1 + hasCactus: 0 diff --git a/Assets/Biomes/Snowland.asset.meta b/Assets/Biomes/Snowland.asset.meta new file mode 100644 index 0000000..d613904 --- /dev/null +++ b/Assets/Biomes/Snowland.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 395e06bc58f962941b98aae9e0d537fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/Game.unity b/Assets/Scenes/Game.unity index 96a4e44..fc59c37 100644 --- a/Assets/Scenes/Game.unity +++ b/Assets/Scenes/Game.unity @@ -4451,7 +4451,6 @@ GameObject: - component: {fileID: 1731320882} - component: {fileID: 1731320885} - component: {fileID: 1731320886} - - component: {fileID: 1731320887} - component: {fileID: 1731320888} - component: {fileID: 1731320884} m_Layer: 0 @@ -4630,42 +4629,10 @@ MonoBehaviour: destroyTime: 1 stackSize: 64 biomes: - - name: Grassland - noiseMult1: 0.01 - noiseMult2: 0.00001 - maxGeneratingHeight: 90 - offset: {x: 281947, y: 0.2} - topBlock: 2 - secondaryBlock: 1 - vegetationThreshold: 0.01 - minVegetationHeight: 3 - maxVegetationHeight: 7 - hasTree: 1 - hasCactus: 0 - - name: Snowland - noiseMult1: 0.05 - noiseMult2: 0.0001 - maxGeneratingHeight: 125 - offset: {x: 5748, y: 43534} - topBlock: 6 - secondaryBlock: 1 - vegetationThreshold: 0.01 - minVegetationHeight: 3 - maxVegetationHeight: 8 - hasTree: 1 - hasCactus: 0 - - name: Desert - noiseMult1: 0.01 - noiseMult2: 0.00001 - maxGeneratingHeight: 75 - offset: {x: 234, y: 545} - topBlock: 7 - secondaryBlock: 7 - vegetationThreshold: 0.023 - minVegetationHeight: 2 - maxVegetationHeight: 8 - hasTree: 0 - hasCactus: 1 + - {fileID: 11400000, guid: 0b42d1ee036fcb146ab5a0bab05c576c, type: 2} + - {fileID: 11400000, guid: 109345ddce309d24bb651d0ac0ad414b, type: 2} + - {fileID: 11400000, guid: 395e06bc58f962941b98aae9e0d537fd, type: 2} + - {fileID: 11400000, guid: 24dac4f41998bca40be4aef18ef05680, type: 2} --- !u!4 &1731320883 Transform: m_ObjectHideFlags: 0 @@ -4719,25 +4686,6 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: player: {fileID: 1743702924} ---- !u!114 &1731320887 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1731320881} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 557a86b045e63a34c8cc5fac7bb9112e, type: 3} - m_Name: - m_EditorClassIdentifier: - waterChunck: {fileID: 8451236987504973569, guid: c34262576ff9a3e4888b17c5dce21dad, - type: 3} - worldCreation: {fileID: 1731320882} - waterAnimTime: 1 - topWater: {fileID: 0} - normalWater: {fileID: 0} - height: 60 --- !u!114 &1731320888 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/Scripts/World/Biome.cs b/Assets/Scripts/World/Biome.cs index 59e8ff0..1387403 100644 --- a/Assets/Scripts/World/Biome.cs +++ b/Assets/Scripts/World/Biome.cs @@ -4,20 +4,28 @@ using UnityEngine; -[Serializable] -public class Biome +[CreateAssetMenu(fileName = "Biome", menuName = "Ourcraft/Biome")] +public class Biome : ScriptableObject { - [SerializeField] public string name; + public string name; - [SerializeField] public float noiseMult1; - [SerializeField] public float noiseMult2; - [SerializeField] public int maxGeneratingHeight; - [SerializeField] public Vector2 offset; - [SerializeField] public int topBlock; - [SerializeField] public int secondaryBlock; - [SerializeField] public float vegetationThreshold; - [SerializeField] public int minVegetationHeight; - [SerializeField] public int maxVegetationHeight; - [SerializeField] public bool hasTree = true; - [SerializeField] public bool hasCactus = false; + public float scale; + public int octaves; + public float persistance; + public float lacunarity; + public int maxGeneratingHeight; + public int amplitude; + public Vector2 offset; + public int topBlock; + public int secondaryBlock; + public float vegetationThreshold; + public int minVegetationHeight; + public int maxVegetationHeight; + public bool hasTree = true; + public bool hasCactus = false; + + public float GetHeight(float x, float z, int seed) + { + return Noise.GetNoise(x, z, seed, amplitude, scale, 1, octaves, persistance, lacunarity) * maxGeneratingHeight; + } } diff --git a/Assets/Scripts/World/MeshCreation.cs b/Assets/Scripts/World/MeshCreation.cs index 7214755..28d99dd 100644 --- a/Assets/Scripts/World/MeshCreation.cs +++ b/Assets/Scripts/World/MeshCreation.cs @@ -241,7 +241,7 @@ private void GenerateBlocks() } else { - if (worldCreation.Perlin3D((x + _offset.x) * 0.05f + worldCreation.Seed, height * 0.05f + worldCreation.Seed, + if (Noise.Perlin3D((x + _offset.x) * 0.05f + worldCreation.Seed, height * 0.05f + worldCreation.Seed, (z + _offset.y) * 0.05f + worldCreation.Seed) >= worldCreation.noiseThreshold) { _blockIDs[x, height + worldCreation.minHeight, z] = biome.topBlock; @@ -295,9 +295,14 @@ private void GenerateBlocks() for(var y = height + worldCreation.minHeight - 1; y >= 1; y--) { - if (worldCreation.Perlin3D((x + _offset.x) * 0.05f + worldCreation.Seed, (float) y * 0.05f + worldCreation.Seed, + if (Noise.Perlin3D((x + _offset.x) * 0.05f + worldCreation.Seed, (float) y * 0.05f + worldCreation.Seed, (z + _offset.y) * 0.05f + worldCreation.Seed) < worldCreation.noiseThreshold) { + // if (!grassTop) + // { + // water.AddWater(x, y, z); + // } + continue; } @@ -308,9 +313,10 @@ private void GenerateBlocks() } else { + grassTop = true; if (y <= height + worldCreation.minHeight - 4) { - if (worldCreation.Perlin3D((x + worldCreation.ironNoiseOffset.x) * 0.5f + worldCreation.Seed, + if (Noise.Perlin3D((x + worldCreation.ironNoiseOffset.x) * 0.5f + worldCreation.Seed, (y + worldCreation.ironNoiseOffset.y) * 0.5f + worldCreation.Seed, (z + worldCreation.ironNoiseOffset.z) * 0.5f + worldCreation.Seed) < worldCreation.ironNoiseThreshold) { diff --git a/Assets/Scripts/World/Noise.cs b/Assets/Scripts/World/Noise.cs new file mode 100644 index 0000000..d5fee6c --- /dev/null +++ b/Assets/Scripts/World/Noise.cs @@ -0,0 +1,40 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public static class Noise +{ + public static float GetNoise(float x, float z, int seed, float amplitude, float scale, float frequency, int octaves, float persistance, float lacunarity) + { + var height = 0f; + + for (var i = 0; i < octaves; i++) + { + var sampleX = (x + seed) / scale * frequency; + var sampleZ = (z + seed) / scale * frequency; + + var perlinVal = Mathf.PerlinNoise(sampleX, sampleZ); + height += perlinVal * amplitude; + + frequency *= lacunarity; + amplitude *= persistance; + } + + return Mathf.InverseLerp(0, amplitude, height); + } + + public static float Perlin3D(float x, float y, float z) + { + var ab = Mathf.PerlinNoise(x, y); + var bc = Mathf.PerlinNoise(y, z); + var ac = Mathf.PerlinNoise(x, z); + + var ba = Mathf.PerlinNoise(y, x); + var cb = Mathf.PerlinNoise(z, y); + var ca = Mathf.PerlinNoise(z, x); + + var abc = ab + bc + ac + ba + cb + ca; + + return abc / 6f; + } +} diff --git a/Assets/Scripts/World/Noise.cs.meta b/Assets/Scripts/World/Noise.cs.meta new file mode 100644 index 0000000..8c24a40 --- /dev/null +++ b/Assets/Scripts/World/Noise.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ee4f83f10e2427d48b6505d163375455 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/World/worldCreation.cs b/Assets/Scripts/World/worldCreation.cs index 5d1b6a4..4499da5 100644 --- a/Assets/Scripts/World/worldCreation.cs +++ b/Assets/Scripts/World/worldCreation.cs @@ -302,21 +302,6 @@ public void PlaceBlock(Vector3 block, int id) } - public float Perlin3D(float x, float y, float z) - { - var ab = Mathf.PerlinNoise(x, y); - var bc = Mathf.PerlinNoise(y, z); - var ac = Mathf.PerlinNoise(x, z); - - var ba = Mathf.PerlinNoise(y, x); - var cb = Mathf.PerlinNoise(z, y); - var ca = Mathf.PerlinNoise(z, x); - - var abc = ab + bc + ac + ba + cb + ca; - - return abc / 6f; - } - public void LoadData(int seed) { this.seed = seed; @@ -344,7 +329,7 @@ public int GetBlock(Vector3 block) if (block.y >= height + minHeight) return 0; - return Perlin3D((block.x) * 0.05f + seed, (float) (block.y) * 0.05f + seed, + return Noise.Perlin3D((block.x) * 0.05f + seed, (float) (block.y) * 0.05f + seed, (block.z) * 0.05f + seed) >= noiseThreshold ? 1 : 0; @@ -417,8 +402,9 @@ public int GetBiome(float x, float z) for (var i = 0; i < biomes.Length; i++) { - var weight = Mathf.PerlinNoise((x + biomes[i].offset.x) * 0.005f + seed, - (z + biomes[i].offset.y) * 0.005f + seed); + var t = biomes[i]; + var weight = Mathf.PerlinNoise((x + t.offset.x + seed) / t.scale * 0.5f, + (z + t.offset.y + seed) / t.scale * 0.5f); if (!(weight > strongestWeight)) continue; strongestWeight = weight; @@ -431,23 +417,19 @@ public int GetBiome(float x, float z) public int GetHeight(float x, float z) { var height = 0; - var count = 0; foreach (var t in biomes) { - var weight = Mathf.PerlinNoise((x + t.offset.x) * 0.005f + seed, - (z + t.offset.y) * 0.005f + seed); - - var height0 = Mathf.PerlinNoise(x * t.noiseMult1 + seed, z * t.noiseMult1 + seed); - var height1 = Mathf.PerlinNoise(x * t.noiseMult2 + seed, z * t.noiseMult2 + seed); - var h = (int) ((height0 + height1) * t.maxGeneratingHeight * weight); + var weight = Mathf.PerlinNoise((x + t.offset.x + seed) / t.scale * 0.5f, + (z + t.offset.y + seed) / t.scale * 0.5f); + + var h = (int) (t.GetHeight(x, z, seed) * weight); if (h < 0) continue; height += h; - count++; } - height /= count; + height /= biomes.Length; return height; } diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index a70a8f6..c616287 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,11 +15,11 @@ D:/Code/Unity/ourcraft -logFile Logs/AssetImportWorker0.log -srvPort -56489 +64156 Successfully changed project path to: D:/Code/Unity/ourcraft D:/Code/Unity/ourcraft Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 69.01 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 70.05 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.1.7f1 (d91830b65d9b) [Subsystems] Discovering subsystems at path C:/Program Files/2021.1.7f1/Editor/Data/Resources/UnitySubsystems @@ -36,532 +36,434 @@ Initialize mono Mono path[0] = 'C:/Program Files/2021.1.7f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/2021.1.7f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/2021.1.7f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56900 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56224 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002962 seconds. +Registered in 0.003101 seconds. Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 54.36 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 77.35 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.129 seconds +- Completed reload, in 2.455 seconds Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002158 seconds. +Registered in 0.002410 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 54.50 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 64.88 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.146 seconds +- Completed reload, in 1.133 seconds Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 1.10 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 1.09 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2934 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 134.2 MB. System memory in use after: 134.4 MB. Unloading 45 unused Assets to reduce memory usage. Loaded Objects now: 3364. -Total: 5.246000 ms (FindLiveObjects: 0.242000 ms CreateObjectMapping: 0.140100 ms MarkObjects: 4.790000 ms DeleteObjects: 0.072900 ms) +Total: 7.192100 ms (FindLiveObjects: 0.258900 ms CreateObjectMapping: 0.189400 ms MarkObjects: 6.646700 ms DeleteObjects: 0.095700 ms) ======================================================================== Received Import Request. - path: Assets/Scripts/World/Water.cs - artifactKey: Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/World/Water.cs using Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f7548fc44c49b45b82247c2e50e76bf') in 0.543127 seconds + path: Assets/Scripts/World/WaterGeneration.cs + artifactKey: Guid(ec169133d48bc674a97ff34332d69835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/WaterGeneration.cs using Guid(ec169133d48bc674a97ff34332d69835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c139f2a684a7591c622631e6ce9a805e') in 0.120548 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002091 seconds. +Registered in 0.003297 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.13 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.94 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.195 seconds +- Completed reload, in 1.220 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.73 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.8 MB. System memory in use after: 127.0 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3367. -Total: 5.879400 ms (FindLiveObjects: 0.234900 ms CreateObjectMapping: 0.173000 ms MarkObjects: 5.435300 ms DeleteObjects: 0.034300 ms) +Total: 6.333700 ms (FindLiveObjects: 0.224700 ms CreateObjectMapping: 0.114800 ms MarkObjects: 5.946100 ms DeleteObjects: 0.046700 ms) -======================================================================== -Received Import Request. - Time since last request: 108.908601 seconds. - path: Assets/Scripts/World/Water.cs - artifactKey: Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/World/Water.cs using Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f74a8605dfe0a1ecafee5cf99deadcf0') in 0.005596 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002279 seconds. +Registered in 0.002987 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.096 seconds +- Completed reload, in 1.221 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.8 MB. System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3370. -Total: 5.227300 ms (FindLiveObjects: 0.218500 ms CreateObjectMapping: 0.107300 ms MarkObjects: 4.878300 ms DeleteObjects: 0.022500 ms) +Total: 8.424300 ms (FindLiveObjects: 0.343400 ms CreateObjectMapping: 0.331900 ms MarkObjects: 7.703800 ms DeleteObjects: 0.043900 ms) -======================================================================== -Received Import Request. - Time since last request: 822.515131 seconds. - path: Assets/Scripts/World/Water.cs - artifactKey: Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/World/Water.cs using Guid(557a86b045e63a34c8cc5fac7bb9112e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37b014257bfb521ad04ba3edd62b808d') in 0.030309 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003040 seconds. +Registered in 0.002239 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 0 plugins. +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.071 seconds +- Completed reload, in 0.994 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.99 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3373. -Total: 5.540400 ms (FindLiveObjects: 0.206600 ms CreateObjectMapping: 0.120500 ms MarkObjects: 5.172700 ms DeleteObjects: 0.039600 ms) +Total: 6.519900 ms (FindLiveObjects: 0.220100 ms CreateObjectMapping: 0.123600 ms MarkObjects: 6.136000 ms DeleteObjects: 0.038600 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002709 seconds. +Registered in 0.003126 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.80 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.86 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.272 seconds +- Completed reload, in 1.247 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.88 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3376. -Total: 5.600300 ms (FindLiveObjects: 0.213500 ms CreateObjectMapping: 0.132600 ms MarkObjects: 5.225900 ms DeleteObjects: 0.027100 ms) +Total: 10.202300 ms (FindLiveObjects: 0.612400 ms CreateObjectMapping: 0.250700 ms MarkObjects: 9.286400 ms DeleteObjects: 0.051500 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002615 seconds. +Registered in 0.002220 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 0 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.077 seconds +- Completed reload, in 1.035 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.0 MB. -System memory in use after: 127.2 MB. +System memory in use before: 126.9 MB. +System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3379. -Total: 5.456100 ms (FindLiveObjects: 0.219900 ms CreateObjectMapping: 0.113000 ms MarkObjects: 5.074300 ms DeleteObjects: 0.048100 ms) +Total: 5.229800 ms (FindLiveObjects: 0.227400 ms CreateObjectMapping: 0.125600 ms MarkObjects: 4.852300 ms DeleteObjects: 0.023500 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002955 seconds. +Registered in 0.002194 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.11 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.336 seconds +- Completed reload, in 1.025 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.88 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.0 MB. -System memory in use after: 127.2 MB. +System memory in use before: 126.9 MB. +System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3382. -Total: 7.010200 ms (FindLiveObjects: 0.374800 ms CreateObjectMapping: 0.147700 ms MarkObjects: 6.440100 ms DeleteObjects: 0.046100 ms) +Total: 5.535000 ms (FindLiveObjects: 0.225700 ms CreateObjectMapping: 0.108300 ms MarkObjects: 5.151000 ms DeleteObjects: 0.049100 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002189 seconds. +Registered in 0.002361 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.69 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.053 seconds +- Completed reload, in 1.029 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.0 MB. -System memory in use after: 127.2 MB. +System memory in use before: 126.9 MB. +System memory in use after: 127.1 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3385. -Total: 5.699600 ms (FindLiveObjects: 0.217600 ms CreateObjectMapping: 0.122000 ms MarkObjects: 5.338500 ms DeleteObjects: 0.020600 ms) +Total: 5.734100 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.107900 ms MarkObjects: 5.359000 ms DeleteObjects: 0.043000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002200 seconds. +Registered in 0.002331 seconds. Begin MonoManager ReloadAssembly +Symbol file data-00000215E7159F90 doesn't match image D:\Code\Unity\ourcraft\Library\ScriptAssemblies\Assembly-CSharp.dll +Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.056 seconds +- Completed reload, in 1.053 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.23 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.0 MB. -System memory in use after: 127.3 MB. +System memory in use before: 126.9 MB. +System memory in use after: 127.2 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3388. -Total: 6.761400 ms (FindLiveObjects: 0.402200 ms CreateObjectMapping: 0.226000 ms MarkObjects: 6.090100 ms DeleteObjects: 0.041400 ms) +Total: 5.048000 ms (FindLiveObjects: 0.250800 ms CreateObjectMapping: 0.143900 ms MarkObjects: 4.613500 ms DeleteObjects: 0.038800 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003603 seconds. +Registered in 0.002382 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.83 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.279 seconds +- Completed reload, in 0.987 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.97 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.0 MB. -System memory in use after: 127.3 MB. +System memory in use before: 126.9 MB. +System memory in use after: 127.2 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3391. -Total: 6.674900 ms (FindLiveObjects: 0.349900 ms CreateObjectMapping: 0.204100 ms MarkObjects: 6.084700 ms DeleteObjects: 0.034900 ms) +Total: 5.754500 ms (FindLiveObjects: 0.248700 ms CreateObjectMapping: 0.145400 ms MarkObjects: 5.319700 ms DeleteObjects: 0.039600 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002237 seconds. +Registered in 0.009685 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.77 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 1.24 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.203 seconds +- Completed reload, in 1.319 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.83 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3394. -Total: 6.144700 ms (FindLiveObjects: 0.212000 ms CreateObjectMapping: 0.128700 ms MarkObjects: 5.772300 ms DeleteObjects: 0.030600 ms) +Total: 6.184500 ms (FindLiveObjects: 0.236600 ms CreateObjectMapping: 0.246200 ms MarkObjects: 5.671100 ms DeleteObjects: 0.029400 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002250 seconds. +Registered in 0.002169 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.67 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.984 seconds +- Completed reload, in 0.998 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3397. -Total: 5.703300 ms (FindLiveObjects: 0.213100 ms CreateObjectMapping: 0.117000 ms MarkObjects: 5.323200 ms DeleteObjects: 0.049100 ms) +Total: 4.921000 ms (FindLiveObjects: 0.202600 ms CreateObjectMapping: 0.122700 ms MarkObjects: 4.573300 ms DeleteObjects: 0.021600 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003051 seconds. +Registered in 0.002459 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.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.015 seconds +- Completed reload, in 1.014 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. +System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3400. -Total: 5.810700 ms (FindLiveObjects: 0.238500 ms CreateObjectMapping: 0.119000 ms MarkObjects: 5.405300 ms DeleteObjects: 0.046900 ms) +Total: 5.299100 ms (FindLiveObjects: 0.239900 ms CreateObjectMapping: 0.115700 ms MarkObjects: 4.919400 ms DeleteObjects: 0.023000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002396 seconds. +Registered in 0.002158 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.74 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.025 seconds +- Completed reload, in 0.967 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3403. -Total: 5.653500 ms (FindLiveObjects: 0.228100 ms CreateObjectMapping: 0.108800 ms MarkObjects: 5.256200 ms DeleteObjects: 0.059500 ms) +Total: 6.407400 ms (FindLiveObjects: 0.278100 ms CreateObjectMapping: 0.224400 ms MarkObjects: 5.863200 ms DeleteObjects: 0.040500 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002243 seconds. +Registered in 0.002289 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 0 plugins. +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.192 seconds +- Completed reload, in 0.986 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.71 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3406. -Total: 5.678300 ms (FindLiveObjects: 0.240700 ms CreateObjectMapping: 0.134300 ms MarkObjects: 5.273200 ms DeleteObjects: 0.028700 ms) +Total: 5.865300 ms (FindLiveObjects: 0.225100 ms CreateObjectMapping: 0.106900 ms MarkObjects: 5.503200 ms DeleteObjects: 0.029000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002179 seconds. +Registered in 0.002321 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 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.989 seconds +- Completed reload, in 1.038 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3409. -Total: 6.335800 ms (FindLiveObjects: 0.225400 ms CreateObjectMapping: 0.130700 ms MarkObjects: 5.911800 ms DeleteObjects: 0.066700 ms) +Total: 5.227600 ms (FindLiveObjects: 0.222700 ms CreateObjectMapping: 0.140800 ms MarkObjects: 4.825800 ms DeleteObjects: 0.037400 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002195 seconds. +Registered in 0.002213 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.89 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.048 seconds +- Completed reload, in 1.020 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.79 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3412. -Total: 5.993000 ms (FindLiveObjects: 0.481700 ms CreateObjectMapping: 0.177100 ms MarkObjects: 5.285400 ms DeleteObjects: 0.047900 ms) +Total: 5.662400 ms (FindLiveObjects: 0.225200 ms CreateObjectMapping: 0.114200 ms MarkObjects: 5.304200 ms DeleteObjects: 0.018000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002617 seconds. +Registered in 0.003053 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.239 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.3 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3415. -Total: 6.113200 ms (FindLiveObjects: 0.275500 ms CreateObjectMapping: 0.173500 ms MarkObjects: 5.625200 ms DeleteObjects: 0.038100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002220 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.82 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.029 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.3 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3418. -Total: 6.556600 ms (FindLiveObjects: 0.248700 ms CreateObjectMapping: 0.180300 ms MarkObjects: 6.088800 ms DeleteObjects: 0.037300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002432 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.86 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.387 seconds +- Completed reload, in 1.012 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.3 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3421. -Total: 5.953600 ms (FindLiveObjects: 0.270500 ms CreateObjectMapping: 0.151700 ms MarkObjects: 5.505000 ms DeleteObjects: 0.025100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002669 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.67 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 0.994 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.3 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3424. -Total: 5.672900 ms (FindLiveObjects: 0.225400 ms CreateObjectMapping: 0.146300 ms MarkObjects: 5.259500 ms DeleteObjects: 0.041000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003540 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.69 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.363 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3427. -Total: 6.764100 ms (FindLiveObjects: 0.398800 ms CreateObjectMapping: 0.270200 ms MarkObjects: 6.066400 ms DeleteObjects: 0.027400 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3415. +Total: 10.886100 ms (FindLiveObjects: 0.250400 ms CreateObjectMapping: 0.133900 ms MarkObjects: 10.455700 ms DeleteObjects: 0.044200 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002297 seconds. +Registered in 0.003694 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.87 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.115 seconds +- Completed reload, in 1.025 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. @@ -570,1069 +472,7 @@ Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3430. -Total: 5.315600 ms (FindLiveObjects: 0.241000 ms CreateObjectMapping: 0.141800 ms MarkObjects: 4.905400 ms DeleteObjects: 0.025800 ms) - -======================================================================== -Received Import Request. - Time since last request: 1083.593695 seconds. - path: Assets/Scenes/Game.unity - artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15a6566ab9557376e5aee7ab7040cc59') in 0.410874 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004107 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.86 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.280 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.81 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3433. -Total: 7.723300 ms (FindLiveObjects: 0.263700 ms CreateObjectMapping: 0.212800 ms MarkObjects: 7.213600 ms DeleteObjects: 0.032000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003242 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.62 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.060 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.41 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3436. -Total: 5.796900 ms (FindLiveObjects: 0.237700 ms CreateObjectMapping: 0.142200 ms MarkObjects: 5.386200 ms DeleteObjects: 0.029400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002602 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 2.14 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.315 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3439. -Total: 15.306000 ms (FindLiveObjects: 0.341100 ms CreateObjectMapping: 0.203900 ms MarkObjects: 14.705100 ms DeleteObjects: 0.046100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002234 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.64 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.009 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3442. -Total: 5.145200 ms (FindLiveObjects: 0.229300 ms CreateObjectMapping: 0.122300 ms MarkObjects: 4.759000 ms DeleteObjects: 0.033700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002863 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.89 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.275 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.30 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3445. -Total: 13.014400 ms (FindLiveObjects: 0.312300 ms CreateObjectMapping: 0.185900 ms MarkObjects: 12.481200 ms DeleteObjects: 0.033800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002206 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.89 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.074 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3448. -Total: 6.963100 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.115400 ms MarkObjects: 6.582800 ms DeleteObjects: 0.034800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002145 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.260 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3451. -Total: 7.995800 ms (FindLiveObjects: 0.310600 ms CreateObjectMapping: 0.515300 ms MarkObjects: 7.127900 ms DeleteObjects: 0.040700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002181 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.23 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.167 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3454. -Total: 5.560100 ms (FindLiveObjects: 0.223600 ms CreateObjectMapping: 0.126200 ms MarkObjects: 5.185800 ms DeleteObjects: 0.023500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002269 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.035 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.76 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3457. -Total: 6.402800 ms (FindLiveObjects: 0.274600 ms CreateObjectMapping: 0.168100 ms MarkObjects: 5.924800 ms DeleteObjects: 0.034000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002252 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.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.161 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.83 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3460. -Total: 5.647900 ms (FindLiveObjects: 0.246300 ms CreateObjectMapping: 0.159000 ms MarkObjects: 5.212700 ms DeleteObjects: 0.028400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002912 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.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.235 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3463. -Total: 6.140700 ms (FindLiveObjects: 0.246600 ms CreateObjectMapping: 0.141200 ms MarkObjects: 5.725800 ms DeleteObjects: 0.026000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002219 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.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.102 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3466. -Total: 5.703300 ms (FindLiveObjects: 0.275800 ms CreateObjectMapping: 0.125500 ms MarkObjects: 5.265600 ms DeleteObjects: 0.035400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002156 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.031 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3469. -Total: 5.596700 ms (FindLiveObjects: 0.226500 ms CreateObjectMapping: 0.111100 ms MarkObjects: 5.197300 ms DeleteObjects: 0.060800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003687 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.237 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3472. -Total: 7.252200 ms (FindLiveObjects: 0.346500 ms CreateObjectMapping: 0.258000 ms MarkObjects: 6.617700 ms DeleteObjects: 0.029000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002276 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.102 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3475. -Total: 5.995900 ms (FindLiveObjects: 0.226600 ms CreateObjectMapping: 0.121600 ms MarkObjects: 5.608400 ms DeleteObjects: 0.038000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002878 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.356 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.10 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3478. -Total: 6.786600 ms (FindLiveObjects: 0.467400 ms CreateObjectMapping: 0.275500 ms MarkObjects: 6.010000 ms DeleteObjects: 0.032200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.005203 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.79 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.353 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.4 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3481. -Total: 5.997400 ms (FindLiveObjects: 0.213800 ms CreateObjectMapping: 0.117600 ms MarkObjects: 5.637500 ms DeleteObjects: 0.027600 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002183 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.157 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3484. -Total: 5.751500 ms (FindLiveObjects: 0.210500 ms CreateObjectMapping: 0.114700 ms MarkObjects: 5.390200 ms DeleteObjects: 0.035100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.004219 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.77 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.323 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.86 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3487. -Total: 5.479500 ms (FindLiveObjects: 0.226000 ms CreateObjectMapping: 0.129900 ms MarkObjects: 5.092300 ms DeleteObjects: 0.030000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002171 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.10 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.541 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.04 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3490. -Total: 9.670400 ms (FindLiveObjects: 0.239900 ms CreateObjectMapping: 0.146100 ms MarkObjects: 9.245700 ms DeleteObjects: 0.035900 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003069 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.13 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.581 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.94 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3493. -Total: 9.851300 ms (FindLiveObjects: 0.290900 ms CreateObjectMapping: 0.220900 ms MarkObjects: 9.299100 ms DeleteObjects: 0.038600 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002285 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.73 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.240 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.07 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.2 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3496. -Total: 8.068200 ms (FindLiveObjects: 0.415000 ms CreateObjectMapping: 0.218600 ms MarkObjects: 7.391100 ms DeleteObjects: 0.041700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003272 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.49 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.702 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3499. -Total: 9.219800 ms (FindLiveObjects: 0.411400 ms CreateObjectMapping: 0.209300 ms MarkObjects: 8.569700 ms DeleteObjects: 0.027500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002382 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.88 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.446 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3502. -Total: 7.044000 ms (FindLiveObjects: 0.233000 ms CreateObjectMapping: 0.148400 ms MarkObjects: 6.616600 ms DeleteObjects: 0.044500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.007609 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.77 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.637 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3505. -Total: 11.187400 ms (FindLiveObjects: 0.345500 ms CreateObjectMapping: 0.230800 ms MarkObjects: 10.579800 ms DeleteObjects: 0.030000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002741 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.163 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.83 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3508. -Total: 8.408800 ms (FindLiveObjects: 0.332400 ms CreateObjectMapping: 0.174400 ms MarkObjects: 7.847800 ms DeleteObjects: 0.050800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002067 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.019 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3511. -Total: 6.048800 ms (FindLiveObjects: 0.249300 ms CreateObjectMapping: 0.179000 ms MarkObjects: 5.592400 ms DeleteObjects: 0.027200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002649 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.76 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.194 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.39 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3514. -Total: 7.924400 ms (FindLiveObjects: 0.261600 ms CreateObjectMapping: 0.156800 ms MarkObjects: 7.471300 ms DeleteObjects: 0.033500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002989 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.81 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.451 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.80 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3517. -Total: 6.959300 ms (FindLiveObjects: 0.485200 ms CreateObjectMapping: 0.258200 ms MarkObjects: 6.187700 ms DeleteObjects: 0.026400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003172 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.83 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.229 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3520. -Total: 7.724500 ms (FindLiveObjects: 0.268000 ms CreateObjectMapping: 0.171300 ms MarkObjects: 7.251400 ms DeleteObjects: 0.032600 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003511 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.382 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.86 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.5 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3523. -Total: 10.936800 ms (FindLiveObjects: 0.442600 ms CreateObjectMapping: 0.275400 ms MarkObjects: 10.174600 ms DeleteObjects: 0.042400 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002250 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.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.215 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.01 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3526. -Total: 5.926600 ms (FindLiveObjects: 0.253600 ms CreateObjectMapping: 0.157000 ms MarkObjects: 5.483200 ms DeleteObjects: 0.031300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003566 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.62 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.793 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3529. -Total: 8.266300 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.171500 ms MarkObjects: 7.789300 ms DeleteObjects: 0.035200 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002228 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.189 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.02 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3532. -Total: 5.697100 ms (FindLiveObjects: 0.236900 ms CreateObjectMapping: 0.136400 ms MarkObjects: 5.292100 ms DeleteObjects: 0.030700 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003181 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.604 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3535. -Total: 10.988600 ms (FindLiveObjects: 0.470300 ms CreateObjectMapping: 0.228500 ms MarkObjects: 10.248800 ms DeleteObjects: 0.039300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002799 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.93 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.418 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.3 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3538. -Total: 7.987600 ms (FindLiveObjects: 0.333300 ms CreateObjectMapping: 0.164600 ms MarkObjects: 7.453300 ms DeleteObjects: 0.035100 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002850 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 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 2.036 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.04 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3541. -Total: 9.547400 ms (FindLiveObjects: 0.416900 ms CreateObjectMapping: 0.287000 ms MarkObjects: 8.806800 ms DeleteObjects: 0.035300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002151 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.81 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.077 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.00 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3544. -Total: 5.863100 ms (FindLiveObjects: 0.242700 ms CreateObjectMapping: 0.144300 ms MarkObjects: 5.444000 ms DeleteObjects: 0.030500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002044 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.74 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.130 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3547. -Total: 5.522400 ms (FindLiveObjects: 0.240600 ms CreateObjectMapping: 0.150800 ms MarkObjects: 5.105200 ms DeleteObjects: 0.024900 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003131 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.73 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.573 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.11 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3550. -Total: 8.270100 ms (FindLiveObjects: 0.318100 ms CreateObjectMapping: 0.173800 ms MarkObjects: 7.748700 ms DeleteObjects: 0.028300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002277 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.27 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.449 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.05 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3553. -Total: 5.637500 ms (FindLiveObjects: 0.268800 ms CreateObjectMapping: 0.129900 ms MarkObjects: 5.211100 ms DeleteObjects: 0.026800 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002812 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.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.160 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3556. -Total: 5.479500 ms (FindLiveObjects: 0.247200 ms CreateObjectMapping: 0.125600 ms MarkObjects: 5.078600 ms DeleteObjects: 0.027300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002280 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.23 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.108 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3559. -Total: 6.928800 ms (FindLiveObjects: 0.337100 ms CreateObjectMapping: 0.168200 ms MarkObjects: 6.393900 ms DeleteObjects: 0.028300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003282 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.92 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.573 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.93 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3562. -Total: 16.585300 ms (FindLiveObjects: 0.481000 ms CreateObjectMapping: 0.235100 ms MarkObjects: 15.821500 ms DeleteObjects: 0.046000 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002963 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.02 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.591 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.95 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.6 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3565. -Total: 7.029200 ms (FindLiveObjects: 0.258100 ms CreateObjectMapping: 0.155700 ms MarkObjects: 6.577800 ms DeleteObjects: 0.035900 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003047 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.42 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.620 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.69 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.7 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3568. -Total: 11.591100 ms (FindLiveObjects: 0.419800 ms CreateObjectMapping: 0.384800 ms MarkObjects: 10.745600 ms DeleteObjects: 0.039300 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.002197 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.65 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.164 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.7 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3571. -Total: 5.872600 ms (FindLiveObjects: 0.249100 ms CreateObjectMapping: 0.140500 ms MarkObjects: 5.454400 ms DeleteObjects: 0.027500 ms) - -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.003335 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.36 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 1.504 seconds -Platform modules already initialized, skipping -Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 1.01 ms, found 0 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.4 MB. -System memory in use after: 127.7 MB. - -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3574. -Total: 8.566500 ms (FindLiveObjects: 0.524900 ms CreateObjectMapping: 0.260600 ms MarkObjects: 7.751700 ms DeleteObjects: 0.028000 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3418. +Total: 5.700600 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.099800 ms MarkObjects: 5.314100 ms DeleteObjects: 0.059900 ms) AssetImportWorkerClient::OnTransportError - code=2 error=End of file diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 757a941..da3f489 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,11 +15,11 @@ D:/Code/Unity/ourcraft -logFile Logs/AssetImportWorker0.log -srvPort -64156 +50880 Successfully changed project path to: D:/Code/Unity/ourcraft D:/Code/Unity/ourcraft Using Asset Import Pipeline V2. -Refreshing native plugins compatible for Editor in 70.05 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 62.52 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.1.7f1 (d91830b65d9b) [Subsystems] Discovering subsystems at path C:/Program Files/2021.1.7f1/Editor/Data/Resources/UnitySubsystems @@ -36,420 +36,2544 @@ Initialize mono Mono path[0] = 'C:/Program Files/2021.1.7f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/2021.1.7f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono config path = 'C:/Program Files/2021.1.7f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56224 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56404 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll Register platform support module: C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.003101 seconds. +Registered in 0.003031 seconds. Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 77.35 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 79.77 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 2.455 seconds +- Completed reload, in 2.814 seconds Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.002410 seconds. +Registered in 0.002399 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 64.88 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 152.24 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.133 seconds +- Completed reload, in 2.414 seconds Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 1.09 ms, found 0 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.10 seconds +Refreshing native plugins compatible for Editor in 0.79 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 2934 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 134.2 MB. System memory in use after: 134.4 MB. Unloading 45 unused Assets to reduce memory usage. Loaded Objects now: 3364. -Total: 7.192100 ms (FindLiveObjects: 0.258900 ms CreateObjectMapping: 0.189400 ms MarkObjects: 6.646700 ms DeleteObjects: 0.095700 ms) +Total: 6.597500 ms (FindLiveObjects: 0.282700 ms CreateObjectMapping: 0.206900 ms MarkObjects: 5.992700 ms DeleteObjects: 0.114000 ms) ======================================================================== Received Import Request. - path: Assets/Scripts/World/WaterGeneration.cs - artifactKey: Guid(ec169133d48bc674a97ff34332d69835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scripts/World/WaterGeneration.cs using Guid(ec169133d48bc674a97ff34332d69835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c139f2a684a7591c622631e6ce9a805e') in 0.120548 seconds + path: Assets/Scripts/World/worldCreation.cs + artifactKey: Guid(e74f6465f82f22b46a81cc419d758236) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/worldCreation.cs using Guid(e74f6465f82f22b46a81cc419d758236) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61beaa5fcfc308dfa76d7032dbdb78ff') in 0.032689 seconds +======================================================================== +Received Import Request. + Time since last request: 142.438582 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da3a5199a674bb5fa25649ff682ce1a0') in 0.001978 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003297 seconds. +Registered in 0.002240 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.94 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.82 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.220 seconds +- Completed reload, in 1.213 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.8 MB. System memory in use after: 127.0 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3367. -Total: 6.333700 ms (FindLiveObjects: 0.224700 ms CreateObjectMapping: 0.114800 ms MarkObjects: 5.946100 ms DeleteObjects: 0.046700 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3368. +Total: 5.996300 ms (FindLiveObjects: 0.246500 ms CreateObjectMapping: 0.197400 ms MarkObjects: 5.507800 ms DeleteObjects: 0.043400 ms) +======================================================================== +Received Import Request. + Time since last request: 14.413716 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '921002e724a655f867d781fc16b3bd60') in 0.008427 seconds +======================================================================== +Received Import Request. + Time since last request: 41.547437 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '004962e185fb05d5dabff51b02fc28ee') in 0.008267 seconds +======================================================================== +Received Import Request. + Time since last request: 5.517650 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da947b32f1c51b2d771793cb053d6262') in 0.002087 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002987 seconds. +Registered in 0.002160 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.67 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.62 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.221 seconds +- Completed reload, in 1.160 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.93 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.85 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 126.8 MB. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3370. -Total: 8.424300 ms (FindLiveObjects: 0.343400 ms CreateObjectMapping: 0.331900 ms MarkObjects: 7.703800 ms DeleteObjects: 0.043900 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3371. +Total: 6.131800 ms (FindLiveObjects: 0.259800 ms CreateObjectMapping: 0.150400 ms MarkObjects: 5.675800 ms DeleteObjects: 0.044600 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002239 seconds. +Registered in 0.002225 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.67 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.79 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.994 seconds +- Completed reload, in 1.106 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.99 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.79 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3373. -Total: 6.519900 ms (FindLiveObjects: 0.220100 ms CreateObjectMapping: 0.123600 ms MarkObjects: 6.136000 ms DeleteObjects: 0.038600 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3374. +Total: 5.631000 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.130000 ms MarkObjects: 5.204500 ms DeleteObjects: 0.051100 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003126 seconds. +Registered in 0.002098 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.86 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.247 seconds +- Completed reload, in 1.120 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.88 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3376. -Total: 10.202300 ms (FindLiveObjects: 0.612400 ms CreateObjectMapping: 0.250700 ms MarkObjects: 9.286400 ms DeleteObjects: 0.051500 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3377. +Total: 5.680300 ms (FindLiveObjects: 0.210700 ms CreateObjectMapping: 0.143600 ms MarkObjects: 5.293200 ms DeleteObjects: 0.031500 ms) +======================================================================== +Received Import Request. + Time since last request: 102.633695 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69a0f7d35f335a300dd7b41b8ef59703') in 0.007935 seconds +======================================================================== +Received Import Request. + Time since last request: 69.254721 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9dde73b367ebbd52da19b54da2614fa2') in 0.002044 seconds +======================================================================== +Received Import Request. + Time since last request: 52.877432 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5e57b67693d574f7b8301e2358a8273') in 0.002978 seconds +======================================================================== +Received Import Request. + Time since last request: 32.264020 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9ca8ab0bb7ddefc951b4da387086582') in 0.002521 seconds +======================================================================== +Received Import Request. + Time since last request: 5.983426 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '443319f40b093fdabb71c1284e520ec8') in 0.002129 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002220 seconds. +Registered in 0.002527 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 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.035 seconds +- Completed reload, in 1.136 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. System memory in use after: 127.1 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3379. -Total: 5.229800 ms (FindLiveObjects: 0.227400 ms CreateObjectMapping: 0.125600 ms MarkObjects: 4.852300 ms DeleteObjects: 0.023500 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3380. +Total: 5.548700 ms (FindLiveObjects: 0.219500 ms CreateObjectMapping: 0.151500 ms MarkObjects: 5.135400 ms DeleteObjects: 0.041200 ms) +======================================================================== +Received Import Request. + Time since last request: 108.525714 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '578e2e5a851339e05fccecdf009c88fd') in 0.008463 seconds +======================================================================== +Received Import Request. + Time since last request: 17.942416 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9158e1fd41e67f9bdddd8061bcc0333') in 0.004017 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002194 seconds. +Registered in 0.003684 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.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.025 seconds +- Completed reload, in 1.139 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. -System memory in use after: 127.1 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3383. +Total: 7.235300 ms (FindLiveObjects: 0.279000 ms CreateObjectMapping: 0.208300 ms MarkObjects: 6.704700 ms DeleteObjects: 0.042100 ms) + +======================================================================== +Received Import Request. + Time since last request: 11.671046 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23645c09cba82cf2d66e7486a23728e1') in 0.008468 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002670 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.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.026 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 126.9 MB. +System memory in use after: 127.2 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3382. -Total: 5.535000 ms (FindLiveObjects: 0.225700 ms CreateObjectMapping: 0.108300 ms MarkObjects: 5.151000 ms DeleteObjects: 0.049100 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3386. +Total: 5.580800 ms (FindLiveObjects: 0.215400 ms CreateObjectMapping: 0.143300 ms MarkObjects: 5.199300 ms DeleteObjects: 0.021900 ms) +======================================================================== +Received Import Request. + Time since last request: 56.283219 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dea25d45941cceaa0b652180d062a66e') in 0.008544 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002361 seconds. +Registered in 0.002621 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.66 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.029 seconds +- Completed reload, in 1.020 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.72 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 126.9 MB. -System memory in use after: 127.1 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3389. +Total: 5.828000 ms (FindLiveObjects: 0.233600 ms CreateObjectMapping: 0.112200 ms MarkObjects: 5.432300 ms DeleteObjects: 0.049000 ms) + +======================================================================== +Received Import Request. + Time since last request: 51.347336 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94b8214b922e2c2ac9860ad6b06a7a81') in 0.006959 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003157 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.62 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.086 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 126.9 MB. +System memory in use after: 127.2 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3385. -Total: 5.734100 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.107900 ms MarkObjects: 5.359000 ms DeleteObjects: 0.043000 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3392. +Total: 5.389500 ms (FindLiveObjects: 0.216000 ms CreateObjectMapping: 0.143900 ms MarkObjects: 4.979700 ms DeleteObjects: 0.048900 ms) +======================================================================== +Received Import Request. + Time since last request: 129.551762 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1660c1c7b2b157b496f945f5ac4c9cb') in 0.015509 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... Registered in 0.002331 seconds. Begin MonoManager ReloadAssembly -Symbol file data-00000215E7159F90 doesn't match image D:\Code\Unity\ourcraft\Library\ScriptAssemblies\Assembly-CSharp.dll -Symbol file LoadedFromMemory is not a mono symbol file Native extension for WindowsStandalone target not found Native extension for WebGL target not found -Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 5.80 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.254 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3395. +Total: 5.932300 ms (FindLiveObjects: 0.244300 ms CreateObjectMapping: 0.119900 ms MarkObjects: 5.508400 ms DeleteObjects: 0.058700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002260 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.94 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.077 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3398. +Total: 6.512500 ms (FindLiveObjects: 0.247400 ms CreateObjectMapping: 0.242700 ms MarkObjects: 5.976400 ms DeleteObjects: 0.044800 ms) + +======================================================================== +Received Import Request. + Time since last request: 16.547944 seconds. + path: Assets/Scripts/World/Noise.cs + artifactKey: Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scripts/World/Noise.cs using Guid(ee4f83f10e2427d48b6505d163375455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc0a046f44a99ebbd7a84373508db28c') in 0.005132 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002923 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 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.053 seconds +- Completed reload, in 1.424 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 126.9 MB. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. System memory in use after: 127.2 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3388. -Total: 5.048000 ms (FindLiveObjects: 0.250800 ms CreateObjectMapping: 0.143900 ms MarkObjects: 4.613500 ms DeleteObjects: 0.038800 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3401. +Total: 5.802600 ms (FindLiveObjects: 0.275200 ms CreateObjectMapping: 0.133600 ms MarkObjects: 5.345100 ms DeleteObjects: 0.047400 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002382 seconds. +Registered in 0.002304 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.62 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.987 seconds +- Completed reload, in 1.018 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 126.9 MB. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. System memory in use after: 127.2 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3391. -Total: 5.754500 ms (FindLiveObjects: 0.248700 ms CreateObjectMapping: 0.145400 ms MarkObjects: 5.319700 ms DeleteObjects: 0.039600 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3404. +Total: 5.311700 ms (FindLiveObjects: 0.254900 ms CreateObjectMapping: 0.137000 ms MarkObjects: 4.895000 ms DeleteObjects: 0.024000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.009685 seconds. +Registered in 0.002601 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.24 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.93 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.319 seconds +- Completed reload, in 1.085 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.83 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.0 MB. -System memory in use after: 127.3 MB. +System memory in use after: 127.2 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3394. -Total: 6.184500 ms (FindLiveObjects: 0.236600 ms CreateObjectMapping: 0.246200 ms MarkObjects: 5.671100 ms DeleteObjects: 0.029400 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3407. +Total: 6.855300 ms (FindLiveObjects: 0.208600 ms CreateObjectMapping: 0.111000 ms MarkObjects: 6.503600 ms DeleteObjects: 0.031000 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002169 seconds. +Registered in 0.003517 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.77 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.240 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3410. +Total: 5.921200 ms (FindLiveObjects: 0.318300 ms CreateObjectMapping: 0.176100 ms MarkObjects: 5.372200 ms DeleteObjects: 0.053200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002188 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.78 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.093 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3413. +Total: 5.830200 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.165800 ms MarkObjects: 5.387600 ms DeleteObjects: 0.046700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003304 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.396 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3416. +Total: 5.596000 ms (FindLiveObjects: 0.246400 ms CreateObjectMapping: 0.116800 ms MarkObjects: 5.148500 ms DeleteObjects: 0.068600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003130 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.62 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.076 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3419. +Total: 6.347500 ms (FindLiveObjects: 0.229600 ms CreateObjectMapping: 0.132900 ms MarkObjects: 5.955900 ms DeleteObjects: 0.028000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002186 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.062 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. +System memory in use after: 127.2 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3422. +Total: 5.879100 ms (FindLiveObjects: 0.207100 ms CreateObjectMapping: 0.126200 ms MarkObjects: 5.519800 ms DeleteObjects: 0.024800 ms) + +======================================================================== +Received Import Request. + Time since last request: 526.523239 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '758b428297abf0d1f15f16cca893f8bd') in 0.065692 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002421 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.64 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.998 seconds +- Completed reload, in 1.031 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3397. -Total: 4.921000 ms (FindLiveObjects: 0.202600 ms CreateObjectMapping: 0.122700 ms MarkObjects: 4.573300 ms DeleteObjects: 0.021600 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3425. +Total: 5.622100 ms (FindLiveObjects: 0.221000 ms CreateObjectMapping: 0.130100 ms MarkObjects: 5.241900 ms DeleteObjects: 0.027800 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002459 seconds. +Registered in 0.003020 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.87 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.014 seconds +- Completed reload, in 1.233 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.78 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3400. -Total: 5.299100 ms (FindLiveObjects: 0.239900 ms CreateObjectMapping: 0.115700 ms MarkObjects: 4.919400 ms DeleteObjects: 0.023000 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3428. +Total: 6.522900 ms (FindLiveObjects: 0.227300 ms CreateObjectMapping: 0.185700 ms MarkObjects: 6.081800 ms DeleteObjects: 0.026900 ms) +======================================================================== +Received Import Request. + Time since last request: 51.096544 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e829d0e959883dea54d9617dc2d9516b') in 0.052601 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002158 seconds. +Registered in 0.002829 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.73 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.967 seconds +- Completed reload, in 1.145 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) -System memory in use before: 127.1 MB. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.0 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3403. -Total: 6.407400 ms (FindLiveObjects: 0.278100 ms CreateObjectMapping: 0.224400 ms MarkObjects: 5.863200 ms DeleteObjects: 0.040500 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3431. +Total: 7.539200 ms (FindLiveObjects: 0.228200 ms CreateObjectMapping: 0.123800 ms MarkObjects: 7.157500 ms DeleteObjects: 0.028800 ms) +======================================================================== +Received Import Request. + Time since last request: 33.617365 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '055083428c81ba85515ca1dbd93c173e') in 0.031419 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002289 seconds. +Registered in 0.002704 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.986 seconds +- Completed reload, in 1.275 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 1.10 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3406. -Total: 5.865300 ms (FindLiveObjects: 0.225100 ms CreateObjectMapping: 0.106900 ms MarkObjects: 5.503200 ms DeleteObjects: 0.029000 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3434. +Total: 8.450800 ms (FindLiveObjects: 0.291100 ms CreateObjectMapping: 0.261300 ms MarkObjects: 7.861800 ms DeleteObjects: 0.034800 ms) +======================================================================== +Received Import Request. + Time since last request: 54.121849 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b31319ba4ea529cf74286b119e28b31') in 0.028315 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002321 seconds. +Registered in 0.002425 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.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.77 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.038 seconds +- Completed reload, in 1.304 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.75 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3409. -Total: 5.227600 ms (FindLiveObjects: 0.222700 ms CreateObjectMapping: 0.140800 ms MarkObjects: 4.825800 ms DeleteObjects: 0.037400 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3437. +Total: 6.402500 ms (FindLiveObjects: 0.236100 ms CreateObjectMapping: 0.140600 ms MarkObjects: 5.992800 ms DeleteObjects: 0.031400 ms) +======================================================================== +Received Import Request. + Time since last request: 236.387312 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a144e0dbe3de1d91b207478b0e5daa63') in 0.030886 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.002213 seconds. +Registered in 0.003067 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.63 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.020 seconds +- Completed reload, in 1.265 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3412. -Total: 5.662400 ms (FindLiveObjects: 0.225200 ms CreateObjectMapping: 0.114200 ms MarkObjects: 5.304200 ms DeleteObjects: 0.018000 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3440. +Total: 6.814300 ms (FindLiveObjects: 0.301000 ms CreateObjectMapping: 0.171300 ms MarkObjects: 6.307700 ms DeleteObjects: 0.032100 ms) ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.003053 seconds. +Registered in 0.002305 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.64 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.012 seconds +- Completed reload, in 1.056 seconds Platform modules already initialized, skipping Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found -Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. +Refreshing native plugins compatible for Editor in 0.68 ms, found 0 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 2853 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) System memory in use before: 127.1 MB. System memory in use after: 127.3 MB. -Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3415. -Total: 10.886100 ms (FindLiveObjects: 0.250400 ms CreateObjectMapping: 0.133900 ms MarkObjects: 10.455700 ms DeleteObjects: 0.044200 ms) +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3443. +Total: 5.691100 ms (FindLiveObjects: 0.273100 ms CreateObjectMapping: 0.156800 ms MarkObjects: 5.235200 ms DeleteObjects: 0.025100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002568 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.94 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.986 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.3 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3446. +Total: 5.508700 ms (FindLiveObjects: 0.202300 ms CreateObjectMapping: 0.131900 ms MarkObjects: 5.126600 ms DeleteObjects: 0.046600 ms) + +======================================================================== +Received Import Request. + Time since last request: 380.838865 seconds. + path: Assets/Biomes + artifactKey: Guid(46888933f1f83884ba1bf052e9ed971f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes using Guid(46888933f1f83884ba1bf052e9ed971f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '31725d81d80e09a5204e23997fc8be81') in 0.006237 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002345 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.81 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.427 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.3 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3449. +Total: 7.625700 ms (FindLiveObjects: 0.301600 ms CreateObjectMapping: 0.167800 ms MarkObjects: 7.123200 ms DeleteObjects: 0.030900 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002897 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.022 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.3 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3452. +Total: 5.572000 ms (FindLiveObjects: 0.201200 ms CreateObjectMapping: 0.135000 ms MarkObjects: 5.216200 ms DeleteObjects: 0.018600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002267 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.78 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.057 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.3 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3455. +Total: 5.844700 ms (FindLiveObjects: 0.262900 ms CreateObjectMapping: 0.146800 ms MarkObjects: 5.392000 ms DeleteObjects: 0.042300 ms) + +======================================================================== +Received Import Request. + Time since last request: 137.199228 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9b879cf56f58b5a87017ecb1032fb12b') in 0.151405 seconds +======================================================================== +Received Import Request. + Time since last request: 10.307957 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9261ccaad650af1a7fee52b7a2a7772') in 0.003137 seconds +======================================================================== +Received Import Request. + Time since last request: 12.541476 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4c249cea59497fae0a3f9f0af1891db') in 0.002978 seconds +======================================================================== +Received Import Request. + Time since last request: 5.067141 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c3a1292db0e7cf97ac8ce19b21f1ec4') in 0.002297 seconds +======================================================================== +Received Import Request. + Time since last request: 28.550539 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '103485acb4071da97ccd0478f2eca2c1') in 0.002569 seconds +======================================================================== +Received Import Request. + Time since last request: 154.655503 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47f8cffd06065aeae52aa0a50cdcb7a0') in 0.003124 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002449 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.84 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.282 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.98 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3458. +Total: 6.544100 ms (FindLiveObjects: 0.305100 ms CreateObjectMapping: 0.174800 ms MarkObjects: 6.035600 ms DeleteObjects: 0.027100 ms) + +======================================================================== +Received Import Request. + Time since last request: 55.992518 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be3281a84fa5015ea9af09f1764ffe7e') in 0.032075 seconds +======================================================================== +Received Import Request. + Time since last request: 4.590579 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21486ee3ee6486dfe189b8f9d7cbce57') in 0.002508 seconds +======================================================================== +Received Import Request. + Time since last request: 13.154131 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '479a27f8d8d4485f1e5de81c293f1365') in 0.002756 seconds +======================================================================== +Received Import Request. + Time since last request: 1.935657 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4bb21351c37cd745f249bbd58e6ed02') in 0.002485 seconds +======================================================================== +Received Import Request. + Time since last request: 7.864654 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f492fdc64d0d42c8845b2e7717b7b554') in 0.002959 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002992 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.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.206 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3461. +Total: 7.051700 ms (FindLiveObjects: 0.412500 ms CreateObjectMapping: 0.213900 ms MarkObjects: 6.384300 ms DeleteObjects: 0.039500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002146 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.078 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3464. +Total: 5.888800 ms (FindLiveObjects: 0.229200 ms CreateObjectMapping: 0.139600 ms MarkObjects: 5.496000 ms DeleteObjects: 0.023000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003466 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.82 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.283 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.1 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3467. +Total: 7.114900 ms (FindLiveObjects: 0.268400 ms CreateObjectMapping: 0.148400 ms MarkObjects: 6.664900 ms DeleteObjects: 0.031500 ms) + +======================================================================== +Received Import Request. + Time since last request: 149.943548 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '402edc8b85f31ac9099eac2a2c7a4a9e') in 0.070880 seconds +======================================================================== +Received Import Request. + Time since last request: 0.373755 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65abd157eb4276aef2c75b68a2e922a7') in 0.002501 seconds +======================================================================== +Received Import Request. + Time since last request: 13.790636 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee9f51d8f129c22ed89050925da657f9') in 0.002965 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002458 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.08 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.284 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3470. +Total: 6.844800 ms (FindLiveObjects: 0.272100 ms CreateObjectMapping: 0.177000 ms MarkObjects: 6.366400 ms DeleteObjects: 0.028000 ms) + +======================================================================== +Received Import Request. + Time since last request: 25.295870 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '856714a091970c4d96c1c6f593157d4d') in 0.026105 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002245 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.92 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.224 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.94 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3473. +Total: 6.675900 ms (FindLiveObjects: 0.295500 ms CreateObjectMapping: 0.193400 ms MarkObjects: 6.161500 ms DeleteObjects: 0.024200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002193 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.62 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.045 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3476. +Total: 5.876100 ms (FindLiveObjects: 0.233300 ms CreateObjectMapping: 0.110500 ms MarkObjects: 5.500100 ms DeleteObjects: 0.031100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002211 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.74 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.230 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.05 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3479. +Total: 6.221300 ms (FindLiveObjects: 0.249300 ms CreateObjectMapping: 0.188100 ms MarkObjects: 5.753300 ms DeleteObjects: 0.028900 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002528 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.038 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3482. +Total: 6.387800 ms (FindLiveObjects: 0.238900 ms CreateObjectMapping: 0.138300 ms MarkObjects: 5.972600 ms DeleteObjects: 0.036500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002369 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.186 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.71 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3485. +Total: 6.543800 ms (FindLiveObjects: 0.269600 ms CreateObjectMapping: 0.183300 ms MarkObjects: 6.057700 ms DeleteObjects: 0.031800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002944 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.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.079 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3488. +Total: 6.287000 ms (FindLiveObjects: 0.215700 ms CreateObjectMapping: 0.119900 ms MarkObjects: 5.921200 ms DeleteObjects: 0.029200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002256 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.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 0.999 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3491. +Total: 5.916000 ms (FindLiveObjects: 0.232700 ms CreateObjectMapping: 0.126400 ms MarkObjects: 5.510900 ms DeleteObjects: 0.045100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003612 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.62 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.087 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3494. +Total: 6.003900 ms (FindLiveObjects: 0.286600 ms CreateObjectMapping: 0.148500 ms MarkObjects: 5.541600 ms DeleteObjects: 0.026200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003225 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.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.157 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3497. +Total: 5.804200 ms (FindLiveObjects: 0.229600 ms CreateObjectMapping: 0.138700 ms MarkObjects: 5.397400 ms DeleteObjects: 0.037500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002169 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.74 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.018 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.4 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3500. +Total: 5.628600 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.173300 ms MarkObjects: 5.188900 ms DeleteObjects: 0.039700 ms) + +======================================================================== +Received Import Request. + Time since last request: 250.915727 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3304c5e23b7669d4f1ba720979508f78') in 0.233052 seconds +======================================================================== +Received Import Request. + Time since last request: 6.519150 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8bd5569fc461d32203c08179948c8d1') in 0.002494 seconds +======================================================================== +Received Import Request. + Time since last request: 1.789268 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f50fe109a3360f14ba168e4055362a42') in 0.002674 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002325 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.86 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.259 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3503. +Total: 6.638900 ms (FindLiveObjects: 0.260000 ms CreateObjectMapping: 0.173500 ms MarkObjects: 6.174200 ms DeleteObjects: 0.029800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002262 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.74 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.194 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3506. +Total: 6.467700 ms (FindLiveObjects: 0.245000 ms CreateObjectMapping: 0.133000 ms MarkObjects: 6.066300 ms DeleteObjects: 0.022400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003648 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.11 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.242 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.72 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.2 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3509. +Total: 6.925500 ms (FindLiveObjects: 0.334200 ms CreateObjectMapping: 0.173400 ms MarkObjects: 6.383600 ms DeleteObjects: 0.032500 ms) + +======================================================================== +Received Import Request. + Time since last request: 115.450930 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01364a7622f949f1b5befb7283b0a7a6') in 0.080589 seconds +======================================================================== +Received Import Request. + Time since last request: 0.211107 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbbfc02fa9ff18c102e0d513ecb16ffc') in 0.002601 seconds +======================================================================== +Received Import Request. + Time since last request: 3.152458 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd134686a3937d702d2607c376f40dbe') in 0.002618 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003029 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.11 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.230 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3512. +Total: 6.699000 ms (FindLiveObjects: 0.239700 ms CreateObjectMapping: 0.135400 ms MarkObjects: 6.291900 ms DeleteObjects: 0.030400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002250 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.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.054 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3515. +Total: 5.900900 ms (FindLiveObjects: 0.294300 ms CreateObjectMapping: 0.165200 ms MarkObjects: 5.413500 ms DeleteObjects: 0.026600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003849 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.86 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 5.470 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3518. +Total: 6.020800 ms (FindLiveObjects: 0.298100 ms CreateObjectMapping: 0.106400 ms MarkObjects: 5.587400 ms DeleteObjects: 0.027400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002771 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.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.112 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.21 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3521. +Total: 6.372300 ms (FindLiveObjects: 0.254700 ms CreateObjectMapping: 0.127300 ms MarkObjects: 5.964700 ms DeleteObjects: 0.024200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002376 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.88 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.228 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.42 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3524. +Total: 8.472900 ms (FindLiveObjects: 0.262500 ms CreateObjectMapping: 0.147000 ms MarkObjects: 8.032600 ms DeleteObjects: 0.029600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002487 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.73 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.107 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.91 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3527. +Total: 11.489700 ms (FindLiveObjects: 0.347800 ms CreateObjectMapping: 0.393200 ms MarkObjects: 10.709800 ms DeleteObjects: 0.036800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002330 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.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.129 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3530. +Total: 5.712500 ms (FindLiveObjects: 0.255700 ms CreateObjectMapping: 0.135300 ms MarkObjects: 5.283100 ms DeleteObjects: 0.037300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004485 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.04 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 5.896 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 2.05 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3533. +Total: 10.614900 ms (FindLiveObjects: 0.665000 ms CreateObjectMapping: 0.321500 ms MarkObjects: 9.590300 ms DeleteObjects: 0.036700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002089 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.089 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3536. +Total: 5.566100 ms (FindLiveObjects: 0.261700 ms CreateObjectMapping: 0.138600 ms MarkObjects: 5.109500 ms DeleteObjects: 0.055000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.006141 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.464 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.07 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.5 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3539. +Total: 6.621900 ms (FindLiveObjects: 0.276300 ms CreateObjectMapping: 0.179200 ms MarkObjects: 6.131300 ms DeleteObjects: 0.033700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003485 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.018 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3542. +Total: 7.786200 ms (FindLiveObjects: 0.279800 ms CreateObjectMapping: 0.258600 ms MarkObjects: 7.203100 ms DeleteObjects: 0.043400 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.191186 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 4.37 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 6.745 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3545. +Total: 5.997800 ms (FindLiveObjects: 0.322300 ms CreateObjectMapping: 0.167500 ms MarkObjects: 5.473500 ms DeleteObjects: 0.033600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002338 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.04 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.077 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3548. +Total: 6.331100 ms (FindLiveObjects: 0.323000 ms CreateObjectMapping: 0.147500 ms MarkObjects: 5.837800 ms DeleteObjects: 0.021800 ms) + +======================================================================== +Received Import Request. + Time since last request: 425.287761 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92c46699cb444de2dbc660f8cf02b62f') in 0.379348 seconds +======================================================================== +Received Import Request. + Time since last request: 9.131356 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be02fa38188a1fcba21077bee67e94be') in 0.002386 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002557 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.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.040 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3551. +Total: 11.512000 ms (FindLiveObjects: 0.450100 ms CreateObjectMapping: 0.206300 ms MarkObjects: 10.815000 ms DeleteObjects: 0.039000 ms) + +======================================================================== +Received Import Request. + Time since last request: 6.137277 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9281705eec3d4daa11e52ccd50cbdaaf') in 0.043820 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002319 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.35 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.052 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.11 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3554. +Total: 6.679100 ms (FindLiveObjects: 0.244200 ms CreateObjectMapping: 0.144600 ms MarkObjects: 6.262500 ms DeleteObjects: 0.026400 ms) + +======================================================================== +Received Import Request. + Time since last request: 9.185481 seconds. + path: Assets/Scenes/Game.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Game.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bbbe72fc441596b67f8776903404be72') in 0.024358 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.004998 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.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.157 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3557. +Total: 6.479200 ms (FindLiveObjects: 0.355300 ms CreateObjectMapping: 0.186500 ms MarkObjects: 5.911700 ms DeleteObjects: 0.024300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002352 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.82 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.167 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.92 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3560. +Total: 7.057600 ms (FindLiveObjects: 0.255600 ms CreateObjectMapping: 0.150000 ms MarkObjects: 6.595800 ms DeleteObjects: 0.054500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003135 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.264 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.74 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3563. +Total: 6.531300 ms (FindLiveObjects: 0.248700 ms CreateObjectMapping: 0.161400 ms MarkObjects: 6.092900 ms DeleteObjects: 0.027000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002492 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.068 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.3 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3566. +Total: 5.954600 ms (FindLiveObjects: 0.233300 ms CreateObjectMapping: 0.125500 ms MarkObjects: 5.571600 ms DeleteObjects: 0.023400 ms) + +======================================================================== +Received Import Request. + Time since last request: 317.000076 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b6fb6a32f789059a3a3bd27ae59ebbf') in 0.087423 seconds +======================================================================== +Received Import Request. + Time since last request: 15.172300 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec5de0d372471face7c45cd997dc54ed') in 0.002520 seconds +======================================================================== +Received Import Request. + Time since last request: 12.235941 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4bbf0512092daacfa79812c070dbc05') in 0.002598 seconds +======================================================================== +Received Import Request. + Time since last request: 54.168986 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c25f954df0b768a89494e9f630fe0d82') in 0.002954 seconds +======================================================================== +Received Import Request. + Time since last request: 1.011548 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af0f6444734891e2622cdba7c1f3239e') in 0.002622 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002279 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.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.074 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.03 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3569. +Total: 5.938300 ms (FindLiveObjects: 0.249700 ms CreateObjectMapping: 0.136200 ms MarkObjects: 5.520000 ms DeleteObjects: 0.031200 ms) + +======================================================================== +Received Import Request. + Time since last request: 17.128768 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1865127e618b42a414dd87a6fb6f8d07') in 0.026593 seconds +======================================================================== +Received Import Request. + Time since last request: 24.934206 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35ed575b82d2a53a79e3749cd78dd0f7') in 0.002996 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002484 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.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.165 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.73 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3572. +Total: 6.099800 ms (FindLiveObjects: 0.344600 ms CreateObjectMapping: 0.120700 ms MarkObjects: 5.604700 ms DeleteObjects: 0.028700 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002472 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.66 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.017 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3575. +Total: 6.541600 ms (FindLiveObjects: 0.287100 ms CreateObjectMapping: 0.227200 ms MarkObjects: 5.999000 ms DeleteObjects: 0.027300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002823 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.02 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.268 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.69 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3578. +Total: 6.870800 ms (FindLiveObjects: 0.279300 ms CreateObjectMapping: 0.149500 ms MarkObjects: 6.405500 ms DeleteObjects: 0.035000 ms) + +======================================================================== +Received Import Request. + Time since last request: 117.582829 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '040e7b607afc19a29304c18f496984ba') in 0.073267 seconds +======================================================================== +Received Import Request. + Time since last request: 0.476420 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14d1d6b5e5b162e43d856f91f051b14e') in 0.002494 seconds +======================================================================== +Received Import Request. + Time since last request: 9.668997 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12b07892f2c4cd2ae6ae1e2e9cb062f8') in 0.005237 seconds +======================================================================== +Received Import Request. + Time since last request: 2.501473 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd426014476e311123fd6f9b687164d06') in 0.009959 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002484 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.85 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.319 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3581. +Total: 6.321200 ms (FindLiveObjects: 0.292900 ms CreateObjectMapping: 0.148000 ms MarkObjects: 5.848700 ms DeleteObjects: 0.030300 ms) + +======================================================================== +Received Import Request. + Time since last request: 59.233037 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80390c199c6749a55fbe7634ed421ec1') in 0.026829 seconds +======================================================================== +Received Import Request. + Time since last request: 0.368037 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7df8405c2595ba9df4bd8da031227b8e') in 0.002452 seconds +======================================================================== +Received Import Request. + Time since last request: 17.131319 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a6856821a6e1e3e566f63d98cae0551') in 0.003558 seconds +======================================================================== +Received Import Request. + Time since last request: 2.736373 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14cf4f96031df0325cf5146c8f0c2a3b') in 0.002782 seconds +======================================================================== +Received Import Request. + Time since last request: 0.782349 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d7b7c1ea1627e9af097a426fff21459') in 0.002499 seconds +======================================================================== +Received Import Request. + Time since last request: 9.921667 seconds. + path: Assets/Prefabs/Chunck.prefab + artifactKey: Guid(320c3e7c5fc352247932ecdea37a94a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Chunck.prefab using Guid(320c3e7c5fc352247932ecdea37a94a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d1b3b26dcab92d3f9c964ad7113d20d') in 0.022228 seconds +======================================================================== +Received Import Request. + Time since last request: 6.292691 seconds. + path: Assets/Prefabs/Chunck.prefab + artifactKey: Guid(320c3e7c5fc352247932ecdea37a94a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/Chunck.prefab using Guid(320c3e7c5fc352247932ecdea37a94a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '036a96e4f05a28eeb3b066d1db994d7f') in 0.004792 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002139 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.00 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.156 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.80 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3584. +Total: 6.253600 ms (FindLiveObjects: 0.284000 ms CreateObjectMapping: 0.183400 ms MarkObjects: 5.755900 ms DeleteObjects: 0.029300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002309 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.281 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.64 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3587. +Total: 5.760200 ms (FindLiveObjects: 0.232400 ms CreateObjectMapping: 0.108000 ms MarkObjects: 5.396800 ms DeleteObjects: 0.022100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002307 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.84 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.080 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.67 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3590. +Total: 5.850800 ms (FindLiveObjects: 0.387200 ms CreateObjectMapping: 0.168300 ms MarkObjects: 5.268200 ms DeleteObjects: 0.026000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002342 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.12 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.153 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.02 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.6 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3593. +Total: 81.371700 ms (FindLiveObjects: 0.264700 ms CreateObjectMapping: 0.149700 ms MarkObjects: 80.925500 ms DeleteObjects: 0.030600 ms) + +======================================================================== +Received Import Request. + Time since last request: 160.110758 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f38b111f2f3dadeccd28567c46830bc') in 0.123308 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002856 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 2.684 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3596. +Total: 7.295900 ms (FindLiveObjects: 0.254300 ms CreateObjectMapping: 0.184600 ms MarkObjects: 6.825300 ms DeleteObjects: 0.030300 ms) + +======================================================================== +Received Import Request. + Time since last request: 60.678208 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1088976dffd465fdcc95a65aafe18db3') in 0.027317 seconds +======================================================================== +Received Import Request. + Time since last request: 2.004635 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '017fff6fc56777faa68b661d887a6492') in 0.002608 seconds +======================================================================== +Received Import Request. + Time since last request: 11.231550 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc2fad3a76df65b52ba83aaea064ed83') in 0.002815 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002503 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.83 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.006 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3599. +Total: 6.005600 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.164200 ms MarkObjects: 5.579200 ms DeleteObjects: 0.023000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003126 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.261 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.89 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3602. +Total: 6.917400 ms (FindLiveObjects: 0.341100 ms CreateObjectMapping: 0.180600 ms MarkObjects: 6.370200 ms DeleteObjects: 0.023600 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002873 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.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.030 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3605. +Total: 6.210500 ms (FindLiveObjects: 0.271300 ms CreateObjectMapping: 0.139000 ms MarkObjects: 5.778900 ms DeleteObjects: 0.020200 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002701 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.310 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.70 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.4 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3608. +Total: 6.433900 ms (FindLiveObjects: 0.245300 ms CreateObjectMapping: 0.146700 ms MarkObjects: 6.011600 ms DeleteObjects: 0.028900 ms) + +======================================================================== +Received Import Request. + Time since last request: 244.476245 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '328388e914fbf075b0210d23334ea660') in 0.102652 seconds +======================================================================== +Received Import Request. + Time since last request: 12.685868 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc191e531b20df4847895da53b638882') in 0.002578 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002395 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.038 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.87 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3611. +Total: 7.619500 ms (FindLiveObjects: 0.415300 ms CreateObjectMapping: 0.248600 ms MarkObjects: 6.917900 ms DeleteObjects: 0.036300 ms) + +======================================================================== +Received Import Request. + Time since last request: 232.752986 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '259939d51c6be0f762f73c53011be79a') in 0.030982 seconds +======================================================================== +Received Import Request. + Time since last request: 15.758401 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf7dd94ed19bf797dcd47b506e37d455') in 0.002500 seconds +======================================================================== +Received Import Request. + Time since last request: 3.440612 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb27b287af4dfc2b0a406aecd613a987') in 0.003182 seconds +======================================================================== +Received Import Request. + Time since last request: 7.590361 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17b4f49a54c97170669a9499bc6c2ea0') in 0.016926 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003433 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.21 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.338 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.08 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3614. +Total: 6.595400 ms (FindLiveObjects: 0.297200 ms CreateObjectMapping: 0.194500 ms MarkObjects: 6.074400 ms DeleteObjects: 0.027500 ms) + +======================================================================== +Received Import Request. + Time since last request: 165.171642 seconds. + path: Assets/Biomes/Desert.asset + artifactKey: Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Desert.asset using Guid(0b42d1ee036fcb146ab5a0bab05c576c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0158a50bf5d825d6a19acd433e9d0e3') in 0.031911 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002328 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.060 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.78 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3617. +Total: 6.133000 ms (FindLiveObjects: 0.325900 ms CreateObjectMapping: 0.193500 ms MarkObjects: 5.582600 ms DeleteObjects: 0.029400 ms) + +======================================================================== +Received Import Request. + Time since last request: 40.322875 seconds. + path: Assets/Biomes/Forest.asset + artifactKey: Guid(95a4688a0fb1e8b4ea4628adcae6a3c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Forest.asset using Guid(95a4688a0fb1e8b4ea4628adcae6a3c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e6d3e5a258b7d97ef071a71bc0db9d3') in 0.029089 seconds +======================================================================== +Received Import Request. + Time since last request: 3.661469 seconds. + path: Assets/Biomes/Grassland.asset + artifactKey: Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland.asset using Guid(109345ddce309d24bb651d0ac0ad414b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb36ca0c2f6ffcd3a5cdb1474c677116') in 0.002394 seconds +======================================================================== +Received Import Request. + Time since last request: 0.281301 seconds. + path: Assets/Biomes/Grassland 1.asset + artifactKey: Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Grassland 1.asset using Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'db74ba3b964e430d1319f4a10b1c01ef') in 0.003847 seconds +======================================================================== +Received Import Request. + Time since last request: 7.846090 seconds. + path: Assets/Biomes/Forest.asset + artifactKey: Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Forest.asset using Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57f08c1df2829b176ebec398d8370453') in 0.002749 seconds +======================================================================== +Received Import Request. + Time since last request: 18.485149 seconds. + path: Assets/Biomes/Forest.asset + artifactKey: Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Forest.asset using Guid(24dac4f41998bca40be4aef18ef05680) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4384102fc2b56d4eeb5b531a3af9d1ff') in 0.002699 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003193 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.76 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.063 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.62 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3620. +Total: 9.094700 ms (FindLiveObjects: 0.230700 ms CreateObjectMapping: 0.131800 ms MarkObjects: 8.701000 ms DeleteObjects: 0.030100 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002297 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.058 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3623. +Total: 5.835000 ms (FindLiveObjects: 0.239200 ms CreateObjectMapping: 0.111400 ms MarkObjects: 5.419100 ms DeleteObjects: 0.064500 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002339 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.062 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.65 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3626. +Total: 5.786900 ms (FindLiveObjects: 0.268300 ms CreateObjectMapping: 0.135200 ms MarkObjects: 5.346300 ms DeleteObjects: 0.035800 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002473 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 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.286 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 1.42 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.7 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3629. +Total: 8.677100 ms (FindLiveObjects: 0.602900 ms CreateObjectMapping: 0.203100 ms MarkObjects: 7.835900 ms DeleteObjects: 0.033500 ms) + +======================================================================== +Received Import Request. + Time since last request: 1275.596070 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53c6058a5e8c722ebf4828861e9e58e4') in 0.113626 seconds +======================================================================== +Received Import Request. + Time since last request: 2.989756 seconds. + path: Assets/Biomes/Snowland.asset + artifactKey: Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Biomes/Snowland.asset using Guid(395e06bc58f962941b98aae9e0d537fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce9a9da794784b68586a918ad15f5bc7') in 0.002809 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.003133 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.79 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.329 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.76 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.8 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3632. +Total: 7.432500 ms (FindLiveObjects: 0.351600 ms CreateObjectMapping: 0.194800 ms MarkObjects: 6.855400 ms DeleteObjects: 0.029300 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002274 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.63 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.067 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.85 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.8 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3635. +Total: 7.971200 ms (FindLiveObjects: 0.377000 ms CreateObjectMapping: 0.161300 ms MarkObjects: 7.398500 ms DeleteObjects: 0.033000 ms) + +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.002530 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.78 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.341 seconds +Platform modules already initialized, skipping +Shader 'Universal Render Pipeline/Particles/Lit': fallback shader 'Universal Render Pipeline/Particles/SimpleLit' not found +Refreshing native plugins compatible for Editor in 0.93 ms, found 0 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 2854 Unused Serialized files (Serialized files now loaded: 0) +System memory in use before: 127.5 MB. +System memory in use after: 127.8 MB. + +Unloading 40 unused Assets to reduce memory usage. Loaded Objects now: 3638. +Total: 11.903100 ms (FindLiveObjects: 0.319800 ms CreateObjectMapping: 0.149900 ms MarkObjects: 11.402000 ms DeleteObjects: 0.029900 ms) diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log index fc8043e..558f088 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,3 +1,9 @@ Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: preprocess + insize=46697 file=/ surfaceOnly=0 cachingPP=1 buildPlatform=19 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR dKW=UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2983 + +Cmd: preprocess + insize=51552 file=/ surfaceOnly=0 cachingPP=1 buildPlatform=19 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR dKW=UNITY_NO_DXT5nm UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 ok=1 outsize=2883 + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/Logs/shadercompiler-UnityShaderCompiler.exe2.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log new file mode 100644 index 0000000..fc8043e --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -0,0 +1,3 @@ +Base path: 'C:/Program Files/2021.1.7f1/Editor/Data', plugins path 'C:/Program Files/2021.1.7f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler +