MirzkisD1Ex0 před 4 roky
rodič
revize
d267c7e06a

+ 278 - 0
Assets/ToneTuneToolkit/Scripts/Verifikado.cs

@@ -0,0 +1,278 @@
+using UnityEngine;
+using System.Collections;
+
+using System;
+using System.IO;
+using System.Text;
+// using System.Linq;
+using System.Net.NetworkInformation;
+using System.Runtime.InteropServices;
+// using System.Management;
+// using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using UnityEngine.Networking;
+using UnityEngine.SceneManagement;
+
+/// <summary>
+/// Verifikado
+/// http://www.txttool.com/
+/// https://tool.lu/timestamp
+/// </summary>
+namespace ToneTuneToolkit
+{
+    public class Verifikado : MonoBehaviour
+    {
+        private string verifikadoFilePath = Application.streamingAssetsPath + "/LighterStudio/data/lib";
+        private string stampURL = "http://api.m.taobao.com/rest/api3.do?api=mtop.common.getTimestamp";
+        // private string stampURL = "http://vv6.video.qq.com/checktime";
+        private string verifikadoCode;
+        private string verifikadoMAC;
+        private string verifikadoStamp;
+
+        private bool checker = false;
+
+        // 弹窗
+        [DllImport("user32.dll", SetLastError = true, ThrowOnUnmappableChar = true, CharSet = CharSet.Auto)]
+        public static extern int MessageBox(IntPtr handle, String message, String title, int type);
+
+        // 网络
+        [DllImport("wininet.dll")]
+        private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue);
+
+        // Debug
+        private GameObject dtGO;
+        private TextMesh dtTMCmpt;
+
+        private void Start()
+        {
+            PresetDebugInfo();
+            VerifikadoSystem();
+        }
+
+        private void PresetDebugInfo()
+        {
+            dtGO = new GameObject("DebugText");
+            dtGO.transform.position = Vector3.zero;
+            dtGO.AddComponent<TextMesh>();
+
+            dtGO.GetComponent<MeshRenderer>().enabled = false; // 关闭检测文字
+
+            dtTMCmpt = dtGO.GetComponent<TextMesh>();
+            dtTMCmpt.characterSize = .2f;
+            dtTMCmpt.fontSize = 25;
+            dtTMCmpt.anchor = TextAnchor.MiddleCenter;
+            dtTMCmpt.alignment = TextAlignment.Left;
+            dtTMCmpt.text = "> Verifying...";
+            return;
+        }
+
+        private void VerifikadoSystem()
+        {
+            checker = CheckFileExist(verifikadoFilePath); // s1验证文件是否存在
+            dtTMCmpt.text += "\n> Check the Files Exists: <color=#FF0000>" + checker + "</color>"; // DEBUG
+            if (!checker) // 如果为否
+            {
+                ApplicationError("无效的程序验证流程。");
+                return;
+            }
+
+            checker = CheckNetwork(); // s2验证网络
+            dtTMCmpt.text += "\n> Check the Network: <color=#FF0000>" + checker + "</color>"; // DEBUG
+            if (!checker)
+            {
+                ApplicationError("无网络链接,请检查后重试。");
+                return;
+            }
+
+            verifikadoCode = BinaryToString(GetFileText(verifikadoFilePath, 1));
+            checker = CheckUniqueCode(verifikadoCode); // s3验证唯一码
+            dtTMCmpt.text += "\n> Check the Code: <color=#FF0000>" + checker + "</color>"; // DEBUG
+            if (!checker)
+            {
+                ApplicationError("无效的授权。");
+                return;
+            }
+
+            verifikadoMAC = BinaryToString(GetFileText(verifikadoFilePath, 2));
+            checker = CheckMACCode(verifikadoMAC); // s4验证MAC
+            dtTMCmpt.text += "\n> Check the Address: <color=#FF0000>" + checker + "</color>"; // DEBUG
+            if (!checker)
+            {
+                ApplicationError("无效的地址。");
+                return;
+            }
+
+            // 验证步骤在下面添加
+            verifikadoStamp = BinaryToString(GetFileText(verifikadoFilePath, 3));
+            StartCoroutine(CheckTimeStampChain(stampURL)); // s5验证时间
+            return;
+        }
+
+        #region Check
+        private bool CheckFileExist(string filePath)
+        {
+            if (File.Exists(filePath))
+            {
+                return true;
+            }
+            return false;
+        }
+
+        private bool CheckNetwork()
+        {
+            int i = 0;
+            if (InternetGetConnectedState(out i, 0)) // C#网络判断
+            {
+                return true;
+            }
+            return false;
+        }
+
+        private bool CheckUniqueCode(string vC)
+        {
+            if (vC == SystemInfo.deviceUniqueIdentifier)
+            {
+                return true;
+            }
+            return false;
+        }
+
+        private bool CheckMACCode(string vM)
+        {
+            NetworkInterface[] nis = NetworkInterface.GetAllNetworkInterfaces(); // Get全部网卡
+            for (int i = 0; i < nis.Length; i++)
+            {
+                if (nis[i].NetworkInterfaceType.ToString() == "Ethernet") // Get以太网
+                {
+                    if (vM == nis[i].GetPhysicalAddress().ToString()) // Mac地址确认
+                    {
+                        return true;
+                    };
+                }
+            }
+            return false;
+        }
+
+        /// <summary>
+        /// 时间验证链
+        /// </summary>
+        /// <param name="stampURL"></param>
+        /// <returns></returns>
+        private IEnumerator CheckTimeStampChain(string stampURL)
+        {
+            UnityWebRequest webRequest = UnityWebRequest.Get(stampURL);
+            yield return webRequest.SendWebRequest();
+            // if (webRequest.result == UnityWebRequest.Result.ProtocolError || webRequest.result == UnityWebRequest.Result.ConnectionError)
+            // {
+            //     // Debug.Log(webRequest.error);
+            // }
+            JObject jb = JObject.Parse(webRequest.downloadHandler.text);
+            long networkStamp = long.Parse(jb["data"]["t"].ToString());
+            // Debug.Log(jb["data"]["t"]); // 时间戳
+
+            long localStamp = long.Parse(verifikadoStamp); // 转long
+            if (networkStamp > localStamp)
+            {
+                checker = false;
+            }
+            else
+            {
+                checker = true;
+            }
+
+            dtTMCmpt.text += "\n> Check the Authorization Date: <color=#FF0000>" + checker + "</color>"; // DEBUG
+            if (!checker)
+            {
+                ApplicationError("授权可能已过期。");
+                yield break;
+            }
+
+            // 跳转
+            dtTMCmpt.text += "\n> Done.";
+            LoadNextScene();
+            yield break;
+        }
+        #endregion
+
+        #region TextConvert
+        /// <summary>
+        /// 字符串转二进制
+        /// </summary>
+        /// <param name="str"></param>
+        /// <returns></returns>
+        protected string StringToBinary(string str)
+        {
+            byte[] data = Encoding.Default.GetBytes(str);
+            StringBuilder sb = new StringBuilder(data.Length * 8);
+            foreach (byte item in data)
+            {
+                sb.Append(Convert.ToString(item, 2).PadLeft(8, '0'));
+            }
+            return sb.ToString();
+        }
+
+        /// <summary>
+        /// 二进制转字符串
+        /// </summary>
+        /// <param name="str"></param>
+        /// <returns></returns>
+        protected string BinaryToString(string str)
+        {
+            System.Text.RegularExpressions.CaptureCollection cs = System.Text.RegularExpressions.Regex.Match(str, @"([01]{8})+").Groups[1].Captures;
+            byte[] data = new byte[cs.Count];
+            for (int i = 0; i < cs.Count; i++)
+            {
+                data[i] = Convert.ToByte(cs[i].Value, 2);
+            }
+            return Encoding.Default.GetString(data, 0, data.Length);
+        }
+        #endregion
+
+        #region Other
+        private void ApplicationError(string message)
+        {
+            MessageBox(IntPtr.Zero, message + "\n您可能是盗版程序的受害者,程序即将退出。\n\n<" + DateTime.Now.ToString() + ">", "Verify - Application Error", 0);
+            Invoke("ApplicationQuit", .5f);
+            return;
+        }
+
+        private void ApplicationQuit()
+        {
+#if UNITY_EDITOR
+            UnityEditor.EditorApplication.isPlaying = false;
+#else
+            Application.Quit();
+#endif
+            return;
+        }
+
+        private void LoadNextScene()
+        {
+            if (SceneManager.sceneCountInBuildSettings >= 2) // 场景大于2加载下一个场景
+            {
+                SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
+            }
+            return;
+        }
+
+        /// <summary>
+        /// 读取文本内容
+        /// </summary>
+        /// <param name="url">文件路径</param>
+        /// <param name="line">要读取的文件行数</param>
+        /// <returns></returns>
+        protected static string GetFileText(string url, int line)
+        {
+            string[] tempStringArray = File.ReadAllLines(url);
+            if (line > 0)
+            {
+                return tempStringArray[line - 1];
+            }
+            else
+            {
+                return null;
+            }
+        }
+        #endregion
+    }
+}

+ 11 - 0
Assets/ToneTuneToolkit/Scripts/Verifikado.cs.meta

@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 04891bc9063ecaf42ae89ad51c7debaf
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 60 - 2096
Logs/AssetImportWorker0-prev.log

@@ -1,29 +1,29 @@
 Using pre-set license
-Built from '2020.3/china_unity/release' branch; Version is '2020.3.11f1c1 (77449f27ef9b) revision 7816351'; Using compiler version '192528614'; Build Type 'Release'
-OS: 'Windows 10 Pro; OS build 19042.1052; Version 2009; 64bit' Language: 'zh' Physical Memory: 16305 MB
+Built from '2020.3/china_unity/release' branch; Version is '2020.3.13f1c1 (93b9df9a3ddc) revision 9681375'; Using compiler version '192528614'; Build Type 'Release'
+OS: 'Windows 10 Pro; OS build 19043.1083; Version 2009; 64bit' Language: 'zh' Physical Memory: 16305 MB
 BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
 
  COMMAND LINE ARGUMENTS:
-D:\workflow\software\Unity\2020.3.11f1c1\Editor\Unity.exe
+C:\workflow\software\Unity\2020.3.13f1c1\Editor\Unity.exe
 -adb2
 -batchMode
 -noUpm
 -name
 AssetImportWorker0
 -projectPath
-D:/workflow/project/unity/ToneTuneToolkit
+D:/_Data/project/unity/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker0.log
 -srvPort
-59289
-Successfully changed project path to: D:/workflow/project/unity/ToneTuneToolkit
-D:/workflow/project/unity/ToneTuneToolkit
+53857
+Successfully changed project path to: D:/_Data/project/unity/ToneTuneToolkit
+D:/_Data/project/unity/ToneTuneToolkit
 Using Asset Import Pipeline V2.
-Refreshing native plugins compatible for Editor in 40.72 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 39.01 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Initialize engine version: 2020.3.11f1c1 (77449f27ef9b)
-[Subsystems] Discovering subsystems at path D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/Resources/UnitySubsystems
-[Subsystems] Discovering subsystems at path D:/workflow/project/unity/ToneTuneToolkit/Assets
+Initialize engine version: 2020.3.13f1c1 (93b9df9a3ddc)
+[Subsystems] Discovering subsystems at path C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/Resources/UnitySubsystems
+[Subsystems] Discovering subsystems at path D:/_Data/project/unity/ToneTuneToolkit/Assets
 GfxDevice: creating device client; threaded=0
 Direct3D:
     Version:  Direct3D 11.0 [level 11.1]
@@ -32,2122 +32,86 @@ Direct3D:
     VRAM:     8088 MB
     Driver:   27.21.14.5671
 Initialize mono
-Mono path[0] = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/Managed'
-Mono path[1] = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
-Mono config path = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56220
+Mono path[0] = 'C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/Managed'
+Mono path[1] = 'C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
+Mono config path = 'C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/MonoBleedingEdge/etc'
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56988
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
-Register platform support module: D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.002690 seconds.
+Register platform support module: C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
+Registered in 0.003469 seconds.
 Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 38.80 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 42.49 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Mono: successfully reloaded assembly
-- Completed reload, in  1.857 seconds
+- Completed reload, in  0.993 seconds
 Platform modules already initialized, skipping
 Registering precompiled user dll's ...
-Registered in 0.005061 seconds.
+Registered in 0.003272 seconds.
 Begin MonoManager ReloadAssembly
 Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 38.79 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 38.59 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Mono: successfully reloaded assembly
-- Completed reload, in  1.088 seconds
+- Completed reload, in  1.109 seconds
 Platform modules already initialized, skipping
 ========================================================================
 Worker process is ready to serve import requests
 Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
-Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2083 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2522.
-Total: 2.526200 ms (FindLiveObjects: 0.215600 ms CreateObjectMapping: 0.309800 ms MarkObjects: 1.930200 ms  DeleteObjects: 0.069500 ms)
-
-========================================================================
-Received Import Request.
-  path: Assets/Scripts/AsyncLoadingWithProcessBar.cs
-  artifactKey: Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/AsyncLoadingWithProcessBar.cs using Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'b4e4d5fe924630fb74d6fab5d3bee2cf') in 0.038158 seconds
-  Import took 0.041156 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004647 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.183 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2074 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.8 MB.
-System memory in use after: 94.9 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2527.
-Total: 2.303400 ms (FindLiveObjects: 0.189100 ms CreateObjectMapping: 0.078600 ms MarkObjects: 2.014500 ms  DeleteObjects: 0.020100 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 23.209352 seconds.
-  path: Assets/Scripts/UDPCommunicator.cs
-  artifactKey: Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/UDPCommunicator.cs using Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '6c8f12296de752e61409df6199c87ee1') in 0.004744 seconds
-  Import took 0.007588 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005169 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.987 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2074 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.8 MB.
-System memory in use after: 95.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2531.
-Total: 2.131900 ms (FindLiveObjects: 0.181500 ms CreateObjectMapping: 0.074400 ms MarkObjects: 1.857400 ms  DeleteObjects: 0.017700 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 2364.221316 seconds.
-  path: Assets/Scripts/UDPCommunicator.cs
-  artifactKey: Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/UDPCommunicator.cs using Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8ae4077f9f43cf7a81941eaf254926c2') in 0.004905 seconds
-  Import took 0.007821 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 45.172994 seconds.
-  path: Assets/Scripts/TTTTest.cs
-  artifactKey: Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TTTTest.cs using Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'c0008a4bfc0992cbe5524484983411a5') in 0.006526 seconds
-  Import took 0.010989 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.000754 seconds.
-  path: Assets/Scripts/TTTTest.cs
-  artifactKey: Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TTTTest.cs using Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'c0008a4bfc0992cbe5524484983411a5') in 0.002592 seconds
-  Import took 0.009774 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004559 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.981 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2074 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2535.
-Total: 2.116800 ms (FindLiveObjects: 0.182700 ms CreateObjectMapping: 0.078400 ms MarkObjects: 1.838100 ms  DeleteObjects: 0.016600 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 60.952073 seconds.
-  path: Assets/Scripts/TTTTest.cs
-  artifactKey: Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TTTTest.cs using Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '69d41473a987c18f05887965ca56f23b') in 0.004426 seconds
-  Import took 0.007148 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004824 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.967 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2540.
-Total: 2.383300 ms (FindLiveObjects: 0.176400 ms CreateObjectMapping: 0.073800 ms MarkObjects: 2.113500 ms  DeleteObjects: 0.018700 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 9.522197 seconds.
-  path: Assets/Scripts/CameraFocusCtrl.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusCtrl.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '7cbf5a8044f5eb592701946fc1ddd383') in 0.004773 seconds
-  Import took 0.007582 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 5.599732 seconds.
-  path: Assets/Scenes/SampleScene.unity
-  artifactKey: Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scenes/SampleScene.unity using Guid(2cda990e2423bbf4892e6590ba056729) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '916ec63443b5c587e27eb37f96ff7128') in 0.010842 seconds
-  Import took 0.013814 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005143 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.015 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2544.
-Total: 2.324800 ms (FindLiveObjects: 0.243900 ms CreateObjectMapping: 0.124400 ms MarkObjects: 1.935600 ms  DeleteObjects: 0.019400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004677 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.981 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.77 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2548.
-Total: 2.106000 ms (FindLiveObjects: 0.192000 ms CreateObjectMapping: 0.080200 ms MarkObjects: 1.816000 ms  DeleteObjects: 0.016900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004553 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.982 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.48 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2552.
-Total: 2.178800 ms (FindLiveObjects: 0.197600 ms CreateObjectMapping: 0.094100 ms MarkObjects: 1.868000 ms  DeleteObjects: 0.018100 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 819.006911 seconds.
-  path: Assets/Scripts/UDPCommunicator.cs
-  artifactKey: Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/UDPCommunicator.cs using Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'e933320dc66f63462e35956a1c9d34c2') in 0.005105 seconds
-  Import took 0.008119 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.027117 seconds.
-  path: Assets/Scripts/UDPCommunicator.cs
-  artifactKey: Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/UDPCommunicator.cs using Guid(4defcafdb867a5442beb28ef24756144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'e933320dc66f63462e35956a1c9d34c2') in 0.002154 seconds
-  Import took 0.005354 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.832665 seconds.
-  path: Assets/Scripts/CameraFocusCtrl.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusCtrl.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd0f91cf62ac05c7123aa32c10c4df1b9') in 0.002130 seconds
-  Import took 0.005060 seconds .
+Unloading 2095 Unused Serialized files (Serialized files now loaded: 0)
+System memory in use before: 95.9 MB.
+System memory in use after: 96.0 MB.
 
-========================================================================
-Received Import Request.
-  Time since last request: 0.001548 seconds.
-  path: Assets/Scripts/CameraFocusCtrl.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusCtrl.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd0f91cf62ac05c7123aa32c10c4df1b9') in 0.002741 seconds
-  Import took 0.005593 seconds .
+Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2536.
+Total: 3.966500 ms (FindLiveObjects: 0.950300 ms CreateObjectMapping: 0.177100 ms MarkObjects: 2.706400 ms  DeleteObjects: 0.130900 ms)
 
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
 ========================================================================
 Received Import Request.
-  Time since last request: 1.955497 seconds.
-  path: Assets/Scripts/CameraFocusObject.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusObject.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'a4096bc319a112633400c47c9a8581df') in 0.002718 seconds
-  Import took 0.006215 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004534 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.966 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 94.9 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2556.
-Total: 2.103700 ms (FindLiveObjects: 0.183700 ms CreateObjectMapping: 0.079900 ms MarkObjects: 1.822500 ms  DeleteObjects: 0.016600 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004557 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2560.
-Total: 2.163900 ms (FindLiveObjects: 0.212800 ms CreateObjectMapping: 0.084400 ms MarkObjects: 1.849900 ms  DeleteObjects: 0.016000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004461 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.961 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2564.
-Total: 2.165400 ms (FindLiveObjects: 0.189400 ms CreateObjectMapping: 0.080500 ms MarkObjects: 1.877300 ms  DeleteObjects: 0.017000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004569 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.961 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2568.
-Total: 2.157100 ms (FindLiveObjects: 0.189700 ms CreateObjectMapping: 0.078900 ms MarkObjects: 1.871300 ms  DeleteObjects: 0.016200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004542 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.962 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2572.
-Total: 2.164500 ms (FindLiveObjects: 0.188100 ms CreateObjectMapping: 0.082400 ms MarkObjects: 1.876200 ms  DeleteObjects: 0.016900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004770 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.966 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2576.
-Total: 2.337800 ms (FindLiveObjects: 0.190500 ms CreateObjectMapping: 0.078600 ms MarkObjects: 2.051300 ms  DeleteObjects: 0.016500 ms)
+  path: Assets/ToneTuneToolkit/Scripts/Verifikado.cs
+  artifactKey: Guid(04891bc9063ecaf42ae89ad51c7debaf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/Scripts/Verifikado.cs using Guid(04891bc9063ecaf42ae89ad51c7debaf) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'fce07007ac98ea2397d4ab07f9284566') in 0.048371 seconds 
+  Import took 0.070550 seconds .
 
 ========================================================================
 Received Prepare
 Registering precompiled user dll's ...
-Registered in 0.004494 seconds.
+Registered in 0.003369 seconds.
 Begin MonoManager ReloadAssembly
 Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
 Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2580.
-Total: 2.169500 ms (FindLiveObjects: 0.184600 ms CreateObjectMapping: 0.075200 ms MarkObjects: 1.893400 ms  DeleteObjects: 0.015200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004481 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
 Mono: successfully reloaded assembly
-- Completed reload, in  0.954 seconds
+- Completed reload, in  0.997 seconds
 Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2584.
-Total: 2.195600 ms (FindLiveObjects: 0.201400 ms CreateObjectMapping: 0.085200 ms MarkObjects: 1.891600 ms  DeleteObjects: 0.016300 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004627 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.963 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2588.
-Total: 2.200200 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.091300 ms MarkObjects: 1.874400 ms  DeleteObjects: 0.016900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004709 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.69 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2592.
-Total: 2.415200 ms (FindLiveObjects: 0.189600 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.127600 ms  DeleteObjects: 0.017400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004641 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.962 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2596.
-Total: 2.198300 ms (FindLiveObjects: 0.191700 ms CreateObjectMapping: 0.090100 ms MarkObjects: 1.898500 ms  DeleteObjects: 0.017000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004469 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.976 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.0 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2600.
-Total: 2.628500 ms (FindLiveObjects: 0.186800 ms CreateObjectMapping: 0.079900 ms MarkObjects: 2.342300 ms  DeleteObjects: 0.018500 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004708 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.950 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2604.
-Total: 2.191200 ms (FindLiveObjects: 0.201200 ms CreateObjectMapping: 0.088600 ms MarkObjects: 1.883100 ms  DeleteObjects: 0.017000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004505 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
 Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.955 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2608.
-Total: 2.051600 ms (FindLiveObjects: 0.194900 ms CreateObjectMapping: 0.082400 ms MarkObjects: 1.758000 ms  DeleteObjects: 0.015400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004531 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.963 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2612.
-Total: 2.287300 ms (FindLiveObjects: 0.189800 ms CreateObjectMapping: 0.080800 ms MarkObjects: 1.999000 ms  DeleteObjects: 0.016500 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004609 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2616.
-Total: 2.200100 ms (FindLiveObjects: 0.198900 ms CreateObjectMapping: 0.088300 ms MarkObjects: 1.895100 ms  DeleteObjects: 0.016800 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004388 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.967 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2620.
-Total: 2.140800 ms (FindLiveObjects: 0.195400 ms CreateObjectMapping: 0.079900 ms MarkObjects: 1.847800 ms  DeleteObjects: 0.016600 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005063 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.089 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2624.
-Total: 2.288700 ms (FindLiveObjects: 0.227400 ms CreateObjectMapping: 0.090400 ms MarkObjects: 1.873900 ms  DeleteObjects: 0.095900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004749 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2075 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2628.
-Total: 2.265000 ms (FindLiveObjects: 0.210100 ms CreateObjectMapping: 0.082500 ms MarkObjects: 1.953000 ms  DeleteObjects: 0.018400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004667 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.951 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2633.
-Total: 2.113400 ms (FindLiveObjects: 0.194100 ms CreateObjectMapping: 0.079100 ms MarkObjects: 1.822300 ms  DeleteObjects: 0.016800 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 1322.423916 seconds.
-  path: Assets/Scripts/ColorSwitcher.cs
-  artifactKey: Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/ColorSwitcher.cs using Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'a5fac80f1b33e3763bd6b56817ce3bd2') in 0.005136 seconds
-  Import took 0.007888 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004977 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.987 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2637.
-Total: 2.423900 ms (FindLiveObjects: 0.253100 ms CreateObjectMapping: 0.178900 ms MarkObjects: 1.971900 ms  DeleteObjects: 0.018800 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004883 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.944 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.1 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2641.
-Total: 2.177500 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.084700 ms MarkObjects: 1.868000 ms  DeleteObjects: 0.016000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004519 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.970 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2645.
-Total: 2.215600 ms (FindLiveObjects: 0.200500 ms CreateObjectMapping: 0.085400 ms MarkObjects: 1.912000 ms  DeleteObjects: 0.016600 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004615 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.977 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2649.
-Total: 2.171900 ms (FindLiveObjects: 0.188200 ms CreateObjectMapping: 0.078700 ms MarkObjects: 1.887800 ms  DeleteObjects: 0.016200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004651 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.956 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.42 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2653.
-Total: 2.169700 ms (FindLiveObjects: 0.198700 ms CreateObjectMapping: 0.082800 ms MarkObjects: 1.870800 ms  DeleteObjects: 0.016500 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004437 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2657.
-Total: 2.399900 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.087400 ms MarkObjects: 2.056200 ms  DeleteObjects: 0.019700 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004584 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2661.
-Total: 2.220300 ms (FindLiveObjects: 0.206300 ms CreateObjectMapping: 0.089600 ms MarkObjects: 1.906200 ms  DeleteObjects: 0.017200 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 598.026114 seconds.
-  path: Assets/Scripts/ColorSwitcher.cs
-  artifactKey: Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/ColorSwitcher.cs using Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '2332d4953fd5afa9cf1a0d2c099b8a1d') in 0.004855 seconds
-  Import took 0.008327 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 1.786384 seconds.
-  path: Assets/Scripts/TraverseColorSwitcher.cs
-  artifactKey: Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseColorSwitcher.cs using Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd3dc85ce0f4ac0a011e25321ce970779') in 0.002452 seconds
-  Import took 0.005840 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004459 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2665.
-Total: 2.059100 ms (FindLiveObjects: 0.198400 ms CreateObjectMapping: 0.084800 ms MarkObjects: 1.750400 ms  DeleteObjects: 0.024600 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004672 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2669.
-Total: 2.324500 ms (FindLiveObjects: 0.222800 ms CreateObjectMapping: 0.090500 ms MarkObjects: 1.991400 ms  DeleteObjects: 0.018600 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 54.522472 seconds.
-  path: Assets/Scripts/TraverseObejctChangeColor.cs
-  artifactKey: Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseObejctChangeColor.cs using Guid(1cb0f29ff65b66b4cab1f4cf8b696319) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '6fb34c8b84cdb6575a4e9ba7d0585487') in 0.004989 seconds
-  Import took 0.008319 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004404 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.3 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2673.
-Total: 2.296300 ms (FindLiveObjects: 0.210500 ms CreateObjectMapping: 0.090100 ms MarkObjects: 1.973900 ms  DeleteObjects: 0.020500 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004608 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.958 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2678.
-Total: 2.230200 ms (FindLiveObjects: 0.206100 ms CreateObjectMapping: 0.084400 ms MarkObjects: 1.920800 ms  DeleteObjects: 0.017800 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 114.985365 seconds.
-  path: Assets/Scripts/TraverseColorSwitcher.cs
-  artifactKey: Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseColorSwitcher.cs using Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '50bb698e83f5da360b2936c3a3f222a5') in 0.004645 seconds
-  Import took 0.008116 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.022819 seconds.
-  path: Assets/Scripts/TraverseColorSwitcher.cs
-  artifactKey: Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseColorSwitcher.cs using Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '50bb698e83f5da360b2936c3a3f222a5') in 0.002663 seconds
-  Import took 0.005820 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 7.823076 seconds.
-  path: Assets/Scripts/TraverseObejctChangeColor.cs
-  artifactKey: Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseObejctChangeColor.cs using Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8eb8557af42000d5ffca6a50e7828458') in 0.002112 seconds
-  Import took 0.005539 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004620 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.977 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 17 unused Assets to reduce memory usage. Loaded Objects now: 2681.
-Total: 2.253000 ms (FindLiveObjects: 0.210500 ms CreateObjectMapping: 0.087000 ms MarkObjects: 1.935400 ms  DeleteObjects: 0.018900 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 14.602908 seconds.
-  path: Assets/Scripts/TraverseObejctChangeColor.cs
-  artifactKey: Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseObejctChangeColor.cs using Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'b1bc7efeac0b6aad47eb270846a38855') in 0.004504 seconds
-  Import took 0.007222 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004483 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.964 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.2 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2685.
-Total: 2.146400 ms (FindLiveObjects: 0.210800 ms CreateObjectMapping: 0.087400 ms MarkObjects: 1.831300 ms  DeleteObjects: 0.015900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004519 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2689.
-Total: 2.446700 ms (FindLiveObjects: 0.218700 ms CreateObjectMapping: 0.090100 ms MarkObjects: 2.118800 ms  DeleteObjects: 0.017900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004567 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.975 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2693.
-Total: 2.376500 ms (FindLiveObjects: 0.195600 ms CreateObjectMapping: 0.082000 ms MarkObjects: 2.080700 ms  DeleteObjects: 0.017300 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004338 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.965 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2697.
-Total: 2.155900 ms (FindLiveObjects: 0.181800 ms CreateObjectMapping: 0.079700 ms MarkObjects: 1.877100 ms  DeleteObjects: 0.016300 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004723 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.87 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.977 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2701.
-Total: 2.348000 ms (FindLiveObjects: 0.219100 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.021900 ms  DeleteObjects: 0.019200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004567 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.983 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2076 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2705.
-Total: 2.332600 ms (FindLiveObjects: 0.212000 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.017400 ms  DeleteObjects: 0.018600 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004448 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.957 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.3 MB.
-System memory in use after: 95.4 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2710.
-Total: 2.127700 ms (FindLiveObjects: 0.206300 ms CreateObjectMapping: 0.081200 ms MarkObjects: 1.823400 ms  DeleteObjects: 0.015900 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 283.570424 seconds.
-  path: Assets/Scripts/ObjectDrag.cs
-  artifactKey: Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/ObjectDrag.cs using Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '40a0a35ec0884adb16d952aeb09b2394') in 0.004941 seconds
-  Import took 0.007676 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 6.149616 seconds.
-  path: Assets/Scripts/CameraFocusObject.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusObject.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'cfff3c2185e95ab0d71d52cc7b38b0cb') in 0.002231 seconds
-  Import took 0.005629 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.000346 seconds.
-  path: Assets/Scripts/CameraFocusObject.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusObject.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'cfff3c2185e95ab0d71d52cc7b38b0cb') in 0.002636 seconds
-  Import took 0.005798 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 11.686755 seconds.
-  path: Assets/Scripts/TraverseObejctChangeColor.cs
-  artifactKey: Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TraverseObejctChangeColor.cs using Guid(6f097afa4616d1c488c4de1ddc4a9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ad5444a782c783e66386537f22f073f4') in 0.002000 seconds
-  Import took 0.004967 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005312 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.57 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.970 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.61 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.4 MB.
-System memory in use after: 95.5 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2714.
-Total: 2.795200 ms (FindLiveObjects: 0.293000 ms CreateObjectMapping: 0.117300 ms MarkObjects: 2.359600 ms  DeleteObjects: 0.023500 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 46.013439 seconds.
-  path: Assets/Scripts/ObjectDrag.cs
-  artifactKey: Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/ObjectDrag.cs using Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd9389e8b015515241b0c224107313631') in 0.007584 seconds
-  Import took 0.010866 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004717 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.4 MB.
-System memory in use after: 95.6 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2718.
-Total: 2.341000 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.087600 ms MarkObjects: 2.004300 ms  DeleteObjects: 0.019400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004445 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.954 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.4 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2722.
-Total: 2.125100 ms (FindLiveObjects: 0.226900 ms CreateObjectMapping: 0.096500 ms MarkObjects: 1.779300 ms  DeleteObjects: 0.021400 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004552 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2726.
-Total: 2.270400 ms (FindLiveObjects: 0.235900 ms CreateObjectMapping: 0.099600 ms MarkObjects: 1.915700 ms  DeleteObjects: 0.018200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004788 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.958 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2730.
-Total: 2.248700 ms (FindLiveObjects: 0.232700 ms CreateObjectMapping: 0.100700 ms MarkObjects: 1.897500 ms  DeleteObjects: 0.016800 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004556 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.975 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2734.
-Total: 2.292600 ms (FindLiveObjects: 0.244800 ms CreateObjectMapping: 0.105700 ms MarkObjects: 1.922700 ms  DeleteObjects: 0.018000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004656 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.970 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.59 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2738.
-Total: 2.318600 ms (FindLiveObjects: 0.245800 ms CreateObjectMapping: 0.108200 ms MarkObjects: 1.945400 ms  DeleteObjects: 0.018000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004821 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2742.
-Total: 2.232000 ms (FindLiveObjects: 0.229100 ms CreateObjectMapping: 0.095300 ms MarkObjects: 1.890500 ms  DeleteObjects: 0.016000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004670 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.976 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2746.
-Total: 2.511200 ms (FindLiveObjects: 0.240800 ms CreateObjectMapping: 0.095900 ms MarkObjects: 2.152800 ms  DeleteObjects: 0.020700 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004580 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.62 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.964 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2750.
-Total: 2.289000 ms (FindLiveObjects: 0.233400 ms CreateObjectMapping: 0.099200 ms MarkObjects: 1.938400 ms  DeleteObjects: 0.016800 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004636 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.965 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.54 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2754.
-Total: 2.162900 ms (FindLiveObjects: 0.233800 ms CreateObjectMapping: 0.097200 ms MarkObjects: 1.814600 ms  DeleteObjects: 0.016200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004644 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2758.
-Total: 2.292900 ms (FindLiveObjects: 0.234700 ms CreateObjectMapping: 0.092100 ms MarkObjects: 1.947100 ms  DeleteObjects: 0.017900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004602 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.970 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.7 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2762.
-Total: 2.296100 ms (FindLiveObjects: 0.250500 ms CreateObjectMapping: 0.098700 ms MarkObjects: 1.929600 ms  DeleteObjects: 0.016400 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 581.495778 seconds.
-  path: Assets/Scripts/AsyncLoadingWithProcessBar.cs
-  artifactKey: Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/AsyncLoadingWithProcessBar.cs using Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd762408a8fafccc8960e04122f82cff0') in 0.004811 seconds
-  Import took 0.008177 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.024787 seconds.
-  path: Assets/Scripts/AsyncLoadingWithProcessBar.cs
-  artifactKey: Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/AsyncLoadingWithProcessBar.cs using Guid(59fe413b5f1cb684db071b4d9f030975) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd762408a8fafccc8960e04122f82cff0') in 0.002254 seconds
-  Import took 0.005753 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 2.818865 seconds.
-  path: Assets/record.txt
-  artifactKey: Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/record.txt using Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'b2ea0df8c4d19be3fa6d1d52909e7114') in 0.044551 seconds
-  Import took 0.047764 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 42.565114 seconds.
-  path: Assets/Scripts/CameraFocusObject.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusObject.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '1caab44d90146e8e2a8b159f9bedd3dd') in 0.002021 seconds
-  Import took 0.005181 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.024209 seconds.
-  path: Assets/Scripts/CameraFocusObject.cs
-  artifactKey: Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/CameraFocusObject.cs using Guid(bc14987a6d122b747a41c48e4821de77) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '1caab44d90146e8e2a8b159f9bedd3dd') in 0.003183 seconds
-  Import took 0.006555 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 38.535546 seconds.
-  path: Assets/Scripts/ObjectDrag.cs
-  artifactKey: Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/ObjectDrag.cs using Guid(5e0d9030901f35d4b931321e616fcbe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '196df135ec895547441b072e73f29192') in 0.002408 seconds
-  Import took 0.005581 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 73.671454 seconds.
-  path: Assets/Scripts/TTTDebug.cs
-  artifactKey: Guid(6284d19efc9037c488c9c23dd8a83e99) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts/TTTDebug.cs using Guid(6284d19efc9037c488c9c23dd8a83e99) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '9d47cb0d66e46ee850690dd2d4524a58') in 0.002217 seconds
-  Import took 0.005310 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 81.876194 seconds.
-  path: Assets/ToneTuneToolkit
-  artifactKey: Guid(710814b34191925449ed9f897ec37572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit using Guid(710814b34191925449ed9f897ec37572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ea506cd4c4821c05e6ce20a93a660595') in 0.002850 seconds
-  Import took 0.006601 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.001252 seconds.
-  path: Assets/ToneTuneToolkit
-  artifactKey: Guid(710814b34191925449ed9f897ec37572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit using Guid(710814b34191925449ed9f897ec37572) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ea506cd4c4821c05e6ce20a93a660595') in 0.002267 seconds
-  Import took 0.005221 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004448 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.978 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.5 MB.
-System memory in use after: 95.8 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2766.
-Total: 2.337800 ms (FindLiveObjects: 0.310700 ms CreateObjectMapping: 0.098200 ms MarkObjects: 1.911200 ms  DeleteObjects: 0.016700 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 9.618997 seconds.
-  path: Assets/Textures
-  artifactKey: Guid(70639ee6ac8ba0c46ac47f73bdd5f165) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Textures using Guid(70639ee6ac8ba0c46ac47f73bdd5f165) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '0ea199aeb8a3634e567e38feb8efac2a') in 0.004840 seconds
-  Import took 0.007942 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 381.832963 seconds.
-  path: Assets/Model/BallObj/obj.FBX
-  artifactKey: Guid(ef24df79e6da1dc44aae7cff12818698) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Model/BallObj/obj.FBX using Guid(ef24df79e6da1dc44aae7cff12818698) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '5cb56bff04b85a88ce022aed440ddf79') in 0.238922 seconds
-  Import took 0.242917 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005762 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.51 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.7 MB.
-System memory in use after: 98.9 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2780.
-Total: 2.554700 ms (FindLiveObjects: 0.246700 ms CreateObjectMapping: 0.101400 ms MarkObjects: 2.188100 ms  DeleteObjects: 0.017200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004609 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.969 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2077 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.7 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2784.
-Total: 2.709600 ms (FindLiveObjects: 0.265800 ms CreateObjectMapping: 0.110900 ms MarkObjects: 2.312600 ms  DeleteObjects: 0.019200 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004743 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.52 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.976 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2789.
-Total: 2.336600 ms (FindLiveObjects: 0.240600 ms CreateObjectMapping: 0.099100 ms MarkObjects: 1.978400 ms  DeleteObjects: 0.017100 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005471 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.981 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2793.
-Total: 2.369600 ms (FindLiveObjects: 0.275300 ms CreateObjectMapping: 0.107800 ms MarkObjects: 1.968200 ms  DeleteObjects: 0.016900 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 555.256418 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/DoRotation.cs
-  artifactKey: Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/DoRotation.cs using Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '2febc9ba6ca8876c82e505e8bdcdbfc7') in 0.004825 seconds
-  Import took 0.007734 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 1.030587 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs
-  artifactKey: Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs using Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '303b675a2a6c69c200495991faee9b92') in 0.002748 seconds
-  Import took 0.006403 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004516 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.133 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.56 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2797.
-Total: 2.440600 ms (FindLiveObjects: 0.225900 ms CreateObjectMapping: 0.093100 ms MarkObjects: 2.103400 ms  DeleteObjects: 0.017300 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.005054 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.971 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2801.
-Total: 2.385500 ms (FindLiveObjects: 0.243300 ms CreateObjectMapping: 0.100300 ms MarkObjects: 2.023700 ms  DeleteObjects: 0.017100 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 50.780182 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs
-  artifactKey: Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs using Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '266e8b4c2a70d939840b5c500e85a85f') in 0.004629 seconds
-  Import took 0.007594 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004499 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.962 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2805.
-Total: 2.253100 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.093400 ms MarkObjects: 1.917200 ms  DeleteObjects: 0.016000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004745 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.982 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2809.
-Total: 2.590800 ms (FindLiveObjects: 0.248000 ms CreateObjectMapping: 0.102100 ms MarkObjects: 2.218300 ms  DeleteObjects: 0.020900 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004456 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.960 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2078 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.0 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2813.
-Total: 2.568400 ms (FindLiveObjects: 0.230000 ms CreateObjectMapping: 0.090500 ms MarkObjects: 2.207700 ms  DeleteObjects: 0.039200 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 191.997754 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs
-  artifactKey: Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs using Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'f59c0124b955b78d9349b54cd94b99df') in 0.005209 seconds
-  Import took 0.008769 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.003683 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs
-  artifactKey: Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/CameraLookAround.cs using Guid(bd0d3bbe40b7eb94888bc73c37515ae4) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'f59c0124b955b78d9349b54cd94b99df') in 0.001994 seconds
-  Import took 0.005028 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 4.333180 seconds.
-  path: Assets/record.txt
-  artifactKey: Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/record.txt using Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '6b52bb148038d69744b176c8a3b4fdd2') in 0.011118 seconds
-  Import took 0.014326 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 54.738961 seconds.
-  path: Assets/record.txt
-  artifactKey: Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/record.txt using Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '673f80538374def9ca60d1c3fe597126') in 0.006122 seconds
-  Import took 0.013812 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004743 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.50 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.8 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2818.
-Total: 2.279500 ms (FindLiveObjects: 0.240500 ms CreateObjectMapping: 0.099300 ms MarkObjects: 1.921700 ms  DeleteObjects: 0.017000 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 20.817921 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/TTTTest.cs
-  artifactKey: Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/TTTTest.cs using Guid(c98d7cecd3aaf3646a1ddc46327fee2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '716cbcbc63431365f76c6eb0ca17a4b9') in 0.004929 seconds
-  Import took 0.008121 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 8.754078 seconds.
-  path: Assets/Scripts
-  artifactKey: Guid(5e636ee29ee27124aaf2a1efbb9ebfee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/Scripts using Guid(5e636ee29ee27124aaf2a1efbb9ebfee) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '4f6390bdd7fa1c0438c4d7e8363b6a27') in 0.002461 seconds
-  Import took 0.006176 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004358 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.977 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2822.
-Total: 2.368600 ms (FindLiveObjects: 0.250700 ms CreateObjectMapping: 0.115500 ms MarkObjects: 1.983700 ms  DeleteObjects: 0.017500 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 24.673819 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs
-  artifactKey: Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs using Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8347dd6ca7fb58aec4d50bddfbf609d6') in 0.005105 seconds
-  Import took 0.008692 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.002190 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs
-  artifactKey: Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs using Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8347dd6ca7fb58aec4d50bddfbf609d6') in 0.002414 seconds
-  Import took 0.005595 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004988 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.967 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2826.
-Total: 2.427700 ms (FindLiveObjects: 0.246300 ms CreateObjectMapping: 0.104900 ms MarkObjects: 1.972200 ms  DeleteObjects: 0.103000 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 114.743775 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs
-  artifactKey: Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs using Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8feddd22280fb3e811305a8bd057cafb') in 0.004450 seconds
-  Import took 0.007317 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004783 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.988 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2830.
-Total: 2.524800 ms (FindLiveObjects: 0.267300 ms CreateObjectMapping: 0.111900 ms MarkObjects: 2.126500 ms  DeleteObjects: 0.018100 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004729 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.975 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.46 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2834.
-Total: 2.305100 ms (FindLiveObjects: 0.229000 ms CreateObjectMapping: 0.093500 ms MarkObjects: 1.965100 ms  DeleteObjects: 0.016300 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 106.883417 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs
-  artifactKey: Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/ObjectFloating.cs using Guid(8f0d0c38eb10c4d4bace2797a3d9e6b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '4d266935f3f9ca8afa212bfc54028ffe') in 0.004519 seconds
-  Import took 0.007755 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004553 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.973 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2838.
-Total: 2.384700 ms (FindLiveObjects: 0.248700 ms CreateObjectMapping: 0.105100 ms MarkObjects: 2.012800 ms  DeleteObjects: 0.017100 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004906 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.029 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2842.
-Total: 2.318300 ms (FindLiveObjects: 0.243000 ms CreateObjectMapping: 0.101100 ms MarkObjects: 1.957000 ms  DeleteObjects: 0.016000 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004639 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.44 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.979 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2079 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.1 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2846.
-Total: 2.296300 ms (FindLiveObjects: 0.250500 ms CreateObjectMapping: 0.099300 ms MarkObjects: 1.930100 ms  DeleteObjects: 0.015300 ms)
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004845 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2080 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2851.
-Total: 2.335300 ms (FindLiveObjects: 0.253500 ms CreateObjectMapping: 0.101500 ms MarkObjects: 1.962400 ms  DeleteObjects: 0.016900 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 111.570469 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs
-  artifactKey: Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs using Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'e29ad8dffb46c2e1f2c859e8778a8e2e') in 0.004782 seconds
-  Import took 0.007722 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.006487 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.974 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.47 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2080 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 98.9 MB.
-System memory in use after: 99.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2855.
-Total: 2.389200 ms (FindLiveObjects: 0.240100 ms CreateObjectMapping: 0.194500 ms MarkObjects: 1.936800 ms  DeleteObjects: 0.016700 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 115.386024 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs
-  artifactKey: Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs using Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'a1d09ed52b9461d1606984d6aa92683f') in 0.005020 seconds
-  Import took 0.008401 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004431 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.968 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.49 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2080 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 99.0 MB.
-System memory in use after: 99.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2859.
-Total: 2.349900 ms (FindLiveObjects: 0.252500 ms CreateObjectMapping: 0.129800 ms MarkObjects: 1.949700 ms  DeleteObjects: 0.017000 ms)
-
-========================================================================
-Received Import Request.
-  Time since last request: 317.300253 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs
-  artifactKey: Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs using Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '368ae0e2563c8b60024c265d7df6e887') in 0.005125 seconds
-  Import took 0.008526 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.001025 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs
-  artifactKey: Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/UnityGuidRegenerator.cs using Guid(6d2e5c54f5ec6a14dadd68a378eda4c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '368ae0e2563c8b60024c265d7df6e887') in 0.002117 seconds
-  Import took 0.005253 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 10.776120 seconds.
-  path: Assets/record.txt
-  artifactKey: Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/record.txt using Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '040a07681e56ec57538f9a63df12be7d') in 0.010810 seconds
-  Import took 0.014183 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 30.961271 seconds.
-  path: Assets/record.txt
-  artifactKey: Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/record.txt using Guid(62f8f6c3eecd27648ab044dfd6d2ea9a) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ae0fd3fd56fbfb14995d386e05c52ca6') in 0.002690 seconds
-  Import took 0.006323 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 12.527377 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor
-  artifactKey: Guid(ada8a605da138b241a9152b82665891d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor using Guid(ada8a605da138b241a9152b82665891d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '7e5ab71511b665babc01747ca650e2d1') in 0.002715 seconds
-  Import took 0.005995 seconds .
-
-========================================================================
-Received Import Request.
-  Time since last request: 0.000550 seconds.
-  path: Assets/ToneTuneToolkit/Scripts/Editor
-  artifactKey: Guid(ada8a605da138b241a9152b82665891d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Scripts/Editor using Guid(ada8a605da138b241a9152b82665891d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '7e5ab71511b665babc01747ca650e2d1') in 0.002036 seconds
-  Import took 0.005202 seconds .
-
-========================================================================
-Received Prepare
-Registering precompiled user dll's ...
-Registered in 0.004452 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 0.43 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  0.978 seconds
-Platform modules already initialized, skipping
-Refreshing native plugins compatible for Editor in 0.45 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2080 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 99.0 MB.
-System memory in use after: 99.2 MB.
-
-Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2863.
-Total: 2.629200 ms (FindLiveObjects: 0.244000 ms CreateObjectMapping: 0.102200 ms MarkObjects: 2.261500 ms  DeleteObjects: 0.020400 ms)
+Unloading 2085 Unused Serialized files (Serialized files now loaded: 0)
+System memory in use before: 95.4 MB.
+System memory in use after: 95.5 MB.
 
+Unloading 16 unused Assets to reduce memory usage. Loaded Objects now: 2540.
+Total: 2.274900 ms (FindLiveObjects: 0.182900 ms CreateObjectMapping: 0.076200 ms MarkObjects: 1.998300 ms  DeleteObjects: 0.016400 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
 AssetImportWorkerClient::OnTransportError - code=2 error=End of file

+ 0 - 77
Logs/AssetImportWorker0.log

@@ -1,77 +0,0 @@
-Using pre-set license
-Built from '2020.3/china_unity/release' branch; Version is '2020.3.11f1c1 (77449f27ef9b) revision 7816351'; Using compiler version '192528614'; Build Type 'Release'
-OS: 'Windows 10 Pro; OS build 19042.1052; Version 2009; 64bit' Language: 'zh' Physical Memory: 16305 MB
-BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 0
-
- COMMAND LINE ARGUMENTS:
-D:\workflow\software\Unity\2020.3.11f1c1\Editor\Unity.exe
--adb2
--batchMode
--noUpm
--name
-AssetImportWorker0
--projectPath
-D:/workflow/project/unity/ToneTuneToolkit
--logFile
-Logs/AssetImportWorker0.log
--srvPort
-64075
-Successfully changed project path to: D:/workflow/project/unity/ToneTuneToolkit
-D:/workflow/project/unity/ToneTuneToolkit
-Using Asset Import Pipeline V2.
-Refreshing native plugins compatible for Editor in 41.11 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Initialize engine version: 2020.3.11f1c1 (77449f27ef9b)
-[Subsystems] Discovering subsystems at path D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/Resources/UnitySubsystems
-[Subsystems] Discovering subsystems at path D:/workflow/project/unity/ToneTuneToolkit/Assets
-GfxDevice: creating device client; threaded=0
-Direct3D:
-    Version:  Direct3D 11.0 [level 11.1]
-    Renderer: NVIDIA GeForce GTX 1070 (ID=0x1b81)
-    Vendor:   
-    VRAM:     8088 MB
-    Driver:   27.21.14.5671
-Initialize mono
-Mono path[0] = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/Managed'
-Mono path[1] = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
-Mono config path = 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56004
-Begin MonoManager ReloadAssembly
-Registering precompiled unity dll's ...
-Register platform support module: D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
-Registered in 0.002499 seconds.
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 38.68 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Mono: successfully reloaded assembly
-- Completed reload, in  1.850 seconds
-Platform modules already initialized, skipping
-Registering precompiled user dll's ...
-Registered in 0.004948 seconds.
-Begin MonoManager ReloadAssembly
-Native extension for WindowsStandalone target not found
-Refreshing native plugins compatible for Editor in 38.36 ms, found 3 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
-========================================================================
-Worker process is ready to serve import requests
-Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds
-Refreshing native plugins compatible for Editor in 0.41 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 2090 Unused Serialized files (Serialized files now loaded: 0)
-System memory in use before: 95.7 MB.
-System memory in use after: 95.8 MB.
-
-Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2531.
-Total: 2.177600 ms (FindLiveObjects: 0.183600 ms CreateObjectMapping: 0.080900 ms MarkObjects: 1.852800 ms  DeleteObjects: 0.059200 ms)
-
-========================================================================
-Received Import Request.
-  path: Assets/ToneTuneToolkit/Textures
-  artifactKey: Guid(d7e14ae02fb09df4e8cf26ad4efe5e87) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/Textures using Guid(d7e14ae02fb09df4e8cf26ad4efe5e87) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '14d4c94c19d19f9bbec4e50c900d3744') in 0.004675 seconds
-  Import took 0.007531 seconds .
-
-AssetImportWorkerClient::OnTransportError - code=2 error=End of file

+ 9 - 0
Logs/Packages-Update.log

@@ -48,3 +48,12 @@ The following packages were updated:
   com.unity.2d.animation from version 5.0.1 to 5.0.5
   com.unity.2d.psdimporter from version 4.0.1 to 4.0.2
   com.unity.2d.spriteshape from version 5.0.1 to 5.1.2
+
+=== Mon Jul 12 14:00:59 2021
+
+Packages were changed.
+Update Mode: updateDependencies
+
+The following packages were updated:
+  com.unity.ide.visualstudio from version 2.0.8 to 2.0.9
+  com.unity.test-framework from version 1.1.24 to 1.1.26

+ 0 - 6
Logs/shadercompiler-AssetImportWorker0.log

@@ -1,6 +0,0 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
-
-Quitting shader compiler process

+ 1 - 1
Logs/shadercompiler-UnityShaderCompiler.exe0.log

@@ -1,4 +1,4 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
+Base path: 'C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data', plugins path 'C:/workflow/software/Unity/2020.3.13f1c1/Editor/Data/PlaybackEngines'
 Cmd: initializeCompiler
 
 Cmd: shutdown

+ 0 - 6
Logs/shadercompiler-UnityShaderCompiler.exe1.log

@@ -1,6 +0,0 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: shutdown
-
-Quitting shader compiler process

+ 0 - 6
Logs/shadercompiler-UnityShaderCompiler.exe2.log

@@ -1,6 +0,0 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: shutdown
-
-Quitting shader compiler process

+ 0 - 6
Logs/shadercompiler-UnityShaderCompiler.exe3.log

@@ -1,6 +0,0 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: shutdown
-
-Quitting shader compiler process

+ 0 - 6
Logs/shadercompiler-UnityShaderCompiler.exe4.log

@@ -1,6 +0,0 @@
-Base path: 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data', plugins path 'D:/workflow/software/Unity/2020.3.11f1c1/Editor/Data/PlaybackEngines'
-Cmd: initializeCompiler
-
-Cmd: shutdown
-
-Quitting shader compiler process

+ 2 - 2
Packages/manifest.json

@@ -8,9 +8,9 @@
     "com.unity.2d.tilemap": "1.0.0",
     "com.unity.collab-proxy": "1.5.7",
     "com.unity.ide.rider": "2.0.7",
-    "com.unity.ide.visualstudio": "2.0.8",
+    "com.unity.ide.visualstudio": "2.0.9",
     "com.unity.ide.vscode": "1.2.3",
-    "com.unity.test-framework": "1.1.24",
+    "com.unity.test-framework": "1.1.26",
     "com.unity.textmeshpro": "3.0.6",
     "com.unity.timeline": "1.4.8",
     "com.unity.ugui": "1.0.0",

+ 2 - 2
Packages/packages-lock.json

@@ -98,7 +98,7 @@
       "url": "https://packages.unity.cn"
     },
     "com.unity.ide.visualstudio": {
-      "version": "2.0.8",
+      "version": "2.0.9",
       "depth": 0,
       "source": "registry",
       "dependencies": {
@@ -128,7 +128,7 @@
       "url": "https://packages.unity.cn"
     },
     "com.unity.test-framework": {
-      "version": "1.1.24",
+      "version": "1.1.26",
       "depth": 0,
       "source": "registry",
       "dependencies": {

+ 2 - 2
ProjectSettings/ProjectVersion.txt

@@ -1,2 +1,2 @@
-m_EditorVersion: 2020.3.11f1c1
-m_EditorVersionWithRevision: 2020.3.11f1c1 (77449f27ef9b)
+m_EditorVersion: 2020.3.13f1c1
+m_EditorVersionWithRevision: 2020.3.13f1c1 (93b9df9a3ddc)