MirzkisD1Ex0 1 month ago
parent
commit
87495cc074
37 changed files with 1423 additions and 1917 deletions
  1. 0 254
      Materials/Backend & Upload/Upload2OYManager.cs
  2. 0 0
      Materials/Networking/Upload/BackendNetManager.cs
  3. 0 0
      Materials/Networking/Upload/Upload2ZCManager.cs
  4. 1 1
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules.meta
  5. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO.meta
  6. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer.meta
  7. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins.meta
  8. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins/System.Drawing.dll
  9. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins/System.Drawing.dll.meta
  10. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts.meta
  11. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterFileProcessor.cs
  12. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterFileProcessor.cs.meta
  13. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterHandler.cs
  14. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterHandler.cs.meta
  15. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterManager.cs
  16. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterManager.cs.meta
  17. 8 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking.meta
  18. 8 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload.meta
  19. 242 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2OYManager.cs
  20. 11 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2OYManager.cs.meta
  21. 573 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2ZCManager.cs
  22. 11 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2ZCManager.cs.meta
  23. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other.meta
  24. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR.meta
  25. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins.meta
  26. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins/zxing.unity.dll
  27. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins/zxing.unity.dll.meta
  28. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts.meta
  29. 1 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts/QRCodeMaster.cs
  30. 0 0
      ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts/QRCodeMaster.cs.meta
  31. 2 2
      ToneTuneToolkit/Assets/ToneTuneToolkit/README.md
  32. 190 26
      ToneTuneToolkit/Logs/AssetImportWorker0-prev.log
  33. 91 842
      ToneTuneToolkit/Logs/AssetImportWorker0.log
  34. 174 26
      ToneTuneToolkit/Logs/AssetImportWorker1-prev.log
  35. 86 741
      ToneTuneToolkit/Logs/AssetImportWorker1.log
  36. 23 23
      ToneTuneToolkit/UserSettings/Layouts/default-2022.dwlt
  37. 2 2
      readme.md

+ 0 - 254
Materials/Backend & Upload/Upload2OYManager.cs

@@ -1,254 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEngine.Events;
-using System.Text;
-using Newtonsoft.Json;
-using UnityEngine.Networking;
-using System.IO;
-using System;
-using ToneTuneToolkit.Common;
-
-/// <summary>
-/// 对乔哥法宝
-/// </summary>
-public class Upload2OYManager : SingletonMaster<Upload2OYManager>
-{
-  public static UnityAction<Texture2D> OnUploadFinishedBackTexture;
-  public static UnityAction<string> OnUploadFinishedBackString;
-
-  private int appID = 78;
-  private float retryWaitTime = 30f; // 重新上传尝试间隔
-
-  [Header("Token")]
-  [SerializeField] private TokenCallbackJson tokenJson = new TokenCallbackJson();
-  [Header("Cloud")]
-  [SerializeField] private CloudCallbackJson cloudCallbackJson = new CloudCallbackJson();
-  [Header("Server")]
-  [SerializeField] private ServerJson serverJson = new ServerJson();
-  [SerializeField] private ServerCallbackJson serverCallbackJson = new ServerCallbackJson();
-
-  private const string cloudTokenURL = @"https://h5.skyelook.com/api/qiniu/getAccessToken";
-  private const string qiniuURL = @"https://upload.qiniup.com";
-  private const string cloudURL = @"https://h5.skyelook.com/api/attachments";
-
-  // ==================================================
-  #region Step 00 // 完善文件信息
-
-  [Space]
-  [SerializeField] private string fileName;
-  [SerializeField] private string filePath;
-
-  public void UpdateFileInfo(string name, string path)
-  {
-    fileName = name;
-    filePath = path;
-    return;
-  }
-
-  #endregion
-  // ==================================================
-  #region Step 01 // 获取Token
-
-  public void UploadData2Net() => StartCoroutine(nameof(GetTokenFromCloud));
-  private IEnumerator GetTokenFromCloud()
-  {
-    using (UnityWebRequest unityWebRequest = UnityWebRequest.Get(cloudTokenURL))
-    {
-      yield return unityWebRequest.SendWebRequest();
-      if (unityWebRequest.result != UnityWebRequest.Result.Success)
-      {
-        Debug.Log($"[U2OYM] {unityWebRequest.error}");
-        StartCoroutine(nameof(RetryUpload));
-      }
-      else
-      {
-        tokenJson = JsonConvert.DeserializeObject<TokenCallbackJson>(unityWebRequest.downloadHandler.text);
-        Debug.Log($"[U2OYM] Get token sucessed: {tokenJson.data.token}");
-
-        StartCoroutine(nameof(PoseFile2Cloud)); // 下一步
-      }
-    }
-    yield break;
-  }
-
-  #endregion
-  // ==================================================
-  #region Step 02 // 上传文件到七牛云
-
-  private IEnumerator PoseFile2Cloud()
-  {
-    byte[] bytes = File.ReadAllBytes(filePath); // 文件转流
-
-    WWWForm wwwForm = new WWWForm();
-    wwwForm.AddField("token", tokenJson.data.token);
-    wwwForm.AddBinaryData("file", bytes, fileName);
-
-    using (UnityWebRequest unityWebRequest = UnityWebRequest.Post(qiniuURL, wwwForm))
-    {
-      yield return unityWebRequest.SendWebRequest();
-      if (unityWebRequest.result != UnityWebRequest.Result.Success)
-      {
-        Debug.Log($"[U2OYM] {unityWebRequest.error}");
-        StartCoroutine(nameof(RetryUpload));
-      }
-      else
-      {
-        cloudCallbackJson = JsonConvert.DeserializeObject<CloudCallbackJson>(unityWebRequest.downloadHandler.text);
-        Debug.Log($"[U2OYM] Upload sucessed: {cloudCallbackJson.data.file_url}");
-
-        StartCoroutine(SaveFile2Server()); // 下一步
-      }
-    }
-    yield break;
-  }
-
-  #endregion
-  // ==================================================
-  #region Step 03 // 七牛云返回数据传至服务器
-
-  private IEnumerator SaveFile2Server()
-  {
-    serverJson.file_url = cloudCallbackJson.data.file_url;
-    serverJson.app_id = appID;
-
-    string jsonString = JsonConvert.SerializeObject(serverJson);
-    byte[] bytes = Encoding.Default.GetBytes(jsonString);
-
-    using (UnityWebRequest unityWebRequest = new UnityWebRequest(cloudURL, "POST"))
-    {
-      unityWebRequest.SetRequestHeader("Content-Type", "application/json");
-      unityWebRequest.uploadHandler = new UploadHandlerRaw(bytes);
-      unityWebRequest.downloadHandler = new DownloadHandlerBuffer();
-
-      yield return unityWebRequest.SendWebRequest();
-      if (unityWebRequest.result != UnityWebRequest.Result.Success)
-      {
-        Debug.Log($"[U2OYM] {unityWebRequest.error}");
-        StartCoroutine(nameof(RetryUpload));
-      }
-      else
-      {
-        serverCallbackJson = JsonConvert.DeserializeObject<ServerCallbackJson>(unityWebRequest.downloadHandler.text);
-        Debug.Log($"[U2OYM] {serverCallbackJson.data.view_url}");
-
-        // 返回链接
-        if (OnUploadFinishedBackString != null)
-        {
-          OnUploadFinishedBackString(serverCallbackJson.data.view_url);
-        }
-
-        // 组装
-        sunCodeURL = $"https://h5.skyelook.com/api/wechat/getQrcodeApp/{serverCallbackJson.data.code}/wx039a4c76d8788bb0/?env=trial"; // ?env=trial // 额外添加?
-        StartCoroutine(nameof(GetSunCode4Server)); // 下一步搞图
-      }
-    }
-    yield break;
-  }
-
-  #endregion
-  // ==================================================
-  #region Step 04 // 从服务器上获取码
-
-  [SerializeField] private string sunCodeURL;
-  [SerializeField] private Texture2D finalSunCode;
-  private IEnumerator GetSunCode4Server()
-  {
-    using (UnityWebRequest unityWebRequest = UnityWebRequestTexture.GetTexture(sunCodeURL)) // new UnityWebRequest(sunCodeURL, "GET"))
-    {
-      yield return unityWebRequest.SendWebRequest();
-      if (unityWebRequest.result != UnityWebRequest.Result.Success)
-      {
-        Debug.Log("[UM] " + unityWebRequest.error);
-      }
-      else
-      {
-        // td = new Texture2D(600, 600);
-        // td.LoadImage(unityWebRequest.tex);
-        finalSunCode = ((DownloadHandlerTexture)unityWebRequest.downloadHandler).texture;
-
-        // 返回图
-        if (OnUploadFinishedBackTexture != null)
-        {
-          OnUploadFinishedBackTexture(((DownloadHandlerTexture)unityWebRequest.downloadHandler).texture);
-        }
-      }
-    }
-    yield break;
-  }
-
-  #endregion
-  // ==================================================
-
-  /// <summary>
-  /// 传不上去硬传
-  /// </summary>
-  /// <returns></returns>
-  private IEnumerator RetryUpload()
-  {
-    yield return new WaitForSeconds(retryWaitTime);
-    PoseFile2Cloud();
-    yield break;
-  }
-
-  // ==================================================
-  // Json解析类
-
-  // 七牛云Token回执
-  [Serializable]
-  public class TokenCallbackJson
-  {
-    public int status;
-    public int code;
-    public TokenDataJson data;
-    public string message;
-  }
-  [Serializable]
-  public class TokenDataJson
-  {
-    public string token;
-  }
-
-  // 七牛云文件上传回执
-  [Serializable]
-  public class CloudCallbackJson
-  {
-    public int code;
-    public CloudCallbackDataJson data;
-    public int status;
-  }
-  [Serializable]
-  public class CloudCallbackDataJson
-  {
-    public string file_name;
-    public string file_url;
-  }
-
-  // 向服务器发送的json
-  [Serializable]
-  public class ServerJson
-  {
-    public string file_url;
-    public int app_id;
-    // public string options;
-  }
-  [Serializable]
-  public class ServerCallbackJson
-  {
-    public int status;
-    public int code;
-    public ServerCallbackDataJson data;
-  }
-
-  [Serializable]
-  public class ServerCallbackDataJson
-  {
-    public string file_url;
-    public int app_id;
-    public string code;
-    public string view_url;
-    public string updated_at;
-    public string created_at;
-    public int id;
-  }
-}

+ 0 - 0
Materials/Backend & Upload/BackendNetManager.cs → Materials/Networking/Upload/BackendNetManager.cs


+ 0 - 0
Materials/Backend & Upload/Upload2ZCManager.cs → Materials/Networking/Upload/Upload2ZCManager.cs


+ 1 - 1
ToneTuneToolkit/Assets/ToneTuneToolkit/Module.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules.meta

@@ -1,5 +1,5 @@
 fileFormatVersion: 2
-guid: ee6c499eb15e4b84b9b8b0c73b49821d
+guid: 63de670e8dfa3894f918c5c621ae74c4
 folderAsset: yes
 DefaultImporter:
   externalObjects: {}

+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Plugins.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Plugins/System.Drawing.dll → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins/System.Drawing.dll


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Plugins/System.Drawing.dll.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Plugins/System.Drawing.dll.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterFileProcessor.cs → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterFileProcessor.cs


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterFileProcessor.cs.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterFileProcessor.cs.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterHandler.cs → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterHandler.cs


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterHandler.cs.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterHandler.cs.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterManager.cs → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterManager.cs


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/IO/Printer/Scripts/PrinterManager.cs.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/IO/Printer/Scripts/PrinterManager.cs.meta


+ 8 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking.meta

@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 6bef49af53347834fb43fa6638c83965
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 8 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload.meta

@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ab299d1f3e8472b4f8d5bc948963fd40
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

+ 242 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2OYManager.cs

@@ -0,0 +1,242 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEngine.Events;
+using System.Text;
+using Newtonsoft.Json;
+using UnityEngine.Networking;
+using System;
+using ToneTuneToolkit.Common;
+
+namespace ToneTuneToolkit.Networking
+{
+  /// <summary>
+  /// 对乔宝具
+  /// </summary>
+  public class Upload2OYManager : SingletonMaster<Upload2OYManager>
+  {
+    public static UnityAction<string> OnUploadFinishedBackString;
+    public static UnityAction<Texture2D> OnUploadFinishedBackTexture;
+
+    private const int AppID = 100;
+    private const float RetryWaitTime = 30f; // 重新上传尝试间隔
+
+    [Header("Qiniu Access Token Callback")]
+    [SerializeField] private QiniuAccessTokenCallback tokenCallback = new QiniuAccessTokenCallback();
+    [Header("Qiniu Callback")]
+    [SerializeField] private QiniuCallback qiniuCallback = new QiniuCallback();
+    [Header("Server Callback")]
+    [SerializeField] private ServerPackage serverPackage = new ServerPackage();
+    [SerializeField] private ServerCallback serverCallback = new ServerCallback();
+
+    private const string QiniuAccessTokenURL = @"https://h5.skyelook.com/api/qiniu/getAccessToken";
+    private const string QiniuURL = @"https://upload.qiniup.com";
+    private const string cloudURL = @"https://h5.skyelook.com/api/attachments";
+
+    // ==================================================
+    #region Step 00 // 完善文件信息
+
+    private string fileName;
+    private byte[] fileStream;
+
+    public void UpdateFilePackage(string name, byte[] stream)
+    {
+      fileName = name;
+      fileStream = stream;
+    }
+
+    #endregion
+    // ==================================================
+    #region Step 01 // 获取Token
+
+    public void UploadFile() => StartCoroutine(nameof(GetQiniuAccessToken));
+
+    private IEnumerator GetQiniuAccessToken()
+    {
+      using (UnityWebRequest unityWebRequest = UnityWebRequest.Get(QiniuAccessTokenURL))
+      {
+        yield return unityWebRequest.SendWebRequest();
+        if (unityWebRequest.result != UnityWebRequest.Result.Success)
+        {
+          Debug.LogWarning($"[U2OYM] {unityWebRequest.error}");
+          StartCoroutine(nameof(RetryUpload));
+        }
+        else
+        {
+          tokenCallback = JsonConvert.DeserializeObject<QiniuAccessTokenCallback>(unityWebRequest.downloadHandler.text);
+          Debug.Log($"[U2OYM] Get qiniu access token sucessed: {tokenCallback.data.token}");
+
+          StartCoroutine(nameof(PostFile2Qiniu)); // 下一步
+        }
+      }
+    }
+
+    #endregion
+    // ==================================================
+    #region Step 02 // 上传文件到七牛云
+
+    private IEnumerator PostFile2Qiniu()
+    {
+      WWWForm wwwForm = new WWWForm();
+      wwwForm.AddField("token", tokenCallback.data.token);
+      wwwForm.AddBinaryData("file", fileStream, fileName);
+
+      using (UnityWebRequest unityWebRequest = UnityWebRequest.Post(QiniuURL, wwwForm))
+      {
+        yield return unityWebRequest.SendWebRequest();
+        if (unityWebRequest.result != UnityWebRequest.Result.Success)
+        {
+          Debug.LogWarning($"[U2OYM] {unityWebRequest.error}");
+          StartCoroutine(nameof(RetryUpload));
+        }
+        else
+        {
+          qiniuCallback = JsonConvert.DeserializeObject<QiniuCallback>(unityWebRequest.downloadHandler.text);
+          Debug.Log($"[U2OYM] Post file 2 qiniu sucessed: {qiniuCallback.data.file_url}");
+
+          StartCoroutine(nameof(PostFile2Server)); // 下一步
+        }
+      }
+    }
+
+    #endregion
+    // ==================================================
+    #region Step 03 // 七牛云返回数据传至服务器
+
+    private IEnumerator PostFile2Server()
+    {
+      serverPackage.file_url = qiniuCallback.data.file_url;
+      serverPackage.app_id = AppID;
+
+      string jsonString = JsonConvert.SerializeObject(serverPackage);
+      byte[] bytes = Encoding.Default.GetBytes(jsonString);
+
+      using (UnityWebRequest unityWebRequest = new UnityWebRequest(cloudURL, "POST"))
+      {
+        unityWebRequest.SetRequestHeader("Content-Type", "application/json");
+        unityWebRequest.uploadHandler = new UploadHandlerRaw(bytes);
+        unityWebRequest.downloadHandler = new DownloadHandlerBuffer();
+
+        yield return unityWebRequest.SendWebRequest();
+        if (unityWebRequest.result != UnityWebRequest.Result.Success)
+        {
+          Debug.LogWarning($"[U2OYM] {unityWebRequest.error}");
+          StartCoroutine(nameof(RetryUpload));
+        }
+        else
+        {
+          serverCallback = JsonConvert.DeserializeObject<ServerCallback>(unityWebRequest.downloadHandler.text);
+          Debug.Log($"[U2OYM] Post file info 2 server sucessed: {serverCallback.data.view_url}");
+
+          // 返回链接
+          OnUploadFinishedBackString?.Invoke(serverCallback.data.view_url);
+
+          // 组装
+          qrCodeURL = $"https://h5.skyelook.com/api/wechat/getQrcodeApp/{serverCallback.data.code}/wx039a4c76d8788bb0/?env=trial"; // ?env=trial // 额外添加?
+
+          StartCoroutine(nameof(GetQRCode4Server)); // 下一步搞图
+        }
+      }
+    }
+
+    #endregion
+    // ==================================================
+    #region Step 04 // 从服务器上获取码
+
+    [SerializeField] private string qrCodeURL;
+    [SerializeField] private Texture2D t2dQRCode;
+
+    private IEnumerator GetQRCode4Server()
+    {
+      using (UnityWebRequest unityWebRequest = UnityWebRequestTexture.GetTexture(qrCodeURL)) // new UnityWebRequest(sunCodeURL, "GET"))
+      {
+        yield return unityWebRequest.SendWebRequest();
+        if (unityWebRequest.result != UnityWebRequest.Result.Success)
+        {
+          Debug.LogWarning($"[U2OYM] {unityWebRequest.error}");
+          StartCoroutine(nameof(RetryUpload));
+        }
+        else
+        {
+          t2dQRCode = ((DownloadHandlerTexture)unityWebRequest.downloadHandler).texture;
+          Debug.Log($"[U2OYM] Get qr texture sucessed");
+
+          OnUploadFinishedBackTexture?.Invoke(t2dQRCode); // 返回图
+        }
+      }
+    }
+
+    #endregion
+    // ==================================================
+    #region 传不上去硬传
+
+    private IEnumerator RetryUpload()
+    {
+      yield return new WaitForSeconds(RetryWaitTime);
+      PostFile2Qiniu();
+    }
+
+    #endregion
+    // ==================================================
+    #region Json解析类
+
+    // 七牛云Token回执
+    [Serializable]
+    public class QiniuAccessTokenCallback
+    {
+      public int status;
+      public int code;
+      public TokenDataJson data;
+      public string message;
+    }
+    [Serializable]
+    public class TokenDataJson
+    {
+      public string token;
+    }
+
+    // 七牛云文件上传回执
+    [Serializable]
+    public class QiniuCallback
+    {
+      public int code;
+      public CloudCallbackDataJson data;
+      public int status;
+    }
+    [Serializable]
+    public class CloudCallbackDataJson
+    {
+      public string file_name;
+      public string file_url;
+    }
+
+    // 向服务器发送的json
+    [Serializable]
+    public class ServerPackage
+    {
+      public string file_url;
+      public int app_id;
+      // public string options;
+    }
+    [Serializable]
+    public class ServerCallback
+    {
+      public int status;
+      public int code;
+      public ServerCallbackDataJson data;
+    }
+
+    [Serializable]
+    public class ServerCallbackDataJson
+    {
+      public string file_url;
+      public int app_id;
+      public string code;
+      public string view_url;
+      public string updated_at;
+      public string created_at;
+      public int id;
+    }
+  }
+  #endregion
+}

+ 11 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2OYManager.cs.meta

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

+ 573 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2ZCManager.cs

@@ -0,0 +1,573 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEngine.Networking;
+using ToneTuneToolkit.Common;
+using UnityEngine.Events;
+using Newtonsoft.Json;
+using System;
+
+namespace ToneTuneToolkit.Networking
+{
+  /// <summary>
+  /// 对志城宝具
+  /// </summary>
+  public class Upload2ZCManager : SingletonMaster<Upload2ZCManager>
+  {
+    #region 2025.10 LonginesBoutique
+
+    public static UnityAction<int> OnLBUploadFinished;
+
+    private const string LonginesBoutiqueUPLOADURL = @"https://longines-ai.studiocapsule.cn/api/index/upload";
+
+
+
+    [SerializeField] private LBUserInfo lbUserInfo = new LBUserInfo();
+    [SerializeField] private LBRespon lbRespon = new LBRespon();
+    public void UpdateLBUserInfo(string gender, string question_1, Texture2D t2d)
+    {
+      lbUserInfo = new LBUserInfo();
+      lbUserInfo.gender = gender;
+      lbUserInfo.question_1 = question_1;
+      lbUserInfo.file = t2d.EncodeToPNG();
+    }
+
+    public void UploadLBUserInfo() => StartCoroutine(nameof(UploadLBUserInfoAction));
+    private IEnumerator UploadLBUserInfoAction()
+    {
+      Debug.Log("[U2ZCM] 开始上传");
+      WWWForm wwwForm = new WWWForm();
+      wwwForm.AddField("gender", lbUserInfo.gender);
+      wwwForm.AddField("question_1", lbUserInfo.question_1);
+      wwwForm.AddBinaryData("file", lbUserInfo.file);
+
+      using (UnityWebRequest www = UnityWebRequest.Post(LonginesBoutiqueUPLOADURL, wwwForm))
+      {
+        www.downloadHandler = new DownloadHandlerBuffer();
+        yield return www.SendWebRequest();
+
+        if (www.result != UnityWebRequest.Result.Success)
+        {
+          Debug.Log($"[U2ZCM] {www.error}");
+          yield break;
+        }
+
+        Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+        try
+        {
+          lbRespon = JsonConvert.DeserializeObject<LBRespon>(www.downloadHandler.text);
+        }
+        catch (Exception)
+        {
+          Debug.Log($"[U2ZCM] 解析错误");
+          yield break;
+        }
+
+        if (lbRespon.code != 0)
+        {
+          OnLBUploadFinished?.Invoke(0000);
+          yield break;
+        }
+
+        OnLBUploadFinished?.Invoke(lbRespon.data.look_pwd);
+      }
+    }
+
+    // ==================================================
+    // 数据类
+    [Serializable]
+    public class LBUserInfo
+    {
+      public string gender;
+      public string question_1;
+      public byte[] file;
+    }
+
+    [Serializable]
+    public class LBRespon
+    {
+      public int code;
+      public string message;
+      public LBResponData data;
+    }
+    public class LBResponData
+    {
+      public int look_pwd;
+    }
+
+    #endregion
+    // ==================================================
+    // ==================================================
+    // ==================================================
+    #region 2025.06 VWAIPhoto
+
+    // public static UnityAction<Texture2D, bool> OnVWAvatarFinished;
+
+    // private const string VWSUBMITURL = @"https://vw-v-space.studiocapsule.cn/api/device/submitTask";
+
+    // public void UpgradeVWUserData(string gender, string car, string address, Texture2D file)
+    // {
+    //   uVWUD.gender = gender;
+    //   uVWUD.car = car;
+    //   uVWUD.address = address;
+    //   uVWUD.file = file.EncodeToPNG();
+    //   return;
+    // }
+
+    // // ==================================================
+    // // 提交生成任务
+
+    // public void SubmitVWUserPhoto() => StartCoroutine(nameof(SubmitVWUserPhotoAction));
+    // private IEnumerator SubmitVWUserPhotoAction()
+    // {
+    //   WWWForm wwwForm = new WWWForm();
+    //   wwwForm.AddField("gender", uVWUD.gender);
+    //   wwwForm.AddField("car", uVWUD.car);
+    //   wwwForm.AddField("address", uVWUD.address);
+    //   wwwForm.AddBinaryData("file", uVWUD.file);
+
+    //   using (UnityWebRequest www = UnityWebRequest.Post(VWSUBMITURL, wwwForm))
+    //   {
+    //     www.downloadHandler = new DownloadHandlerBuffer();
+    //     yield return www.SendWebRequest();
+
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+    //     try
+    //     {
+    //       rVWUD = JsonConvert.DeserializeObject<Respon_VWUserData>(www.downloadHandler.text);
+    //     }
+    //     catch
+    //     {
+    //       OnVWAvatarFinished?.Invoke(null, false);
+    //     }
+    //     if (rVWUD.code != 0)
+    //     {
+    //       Debug.Log($"[U2ZCM] Code Error");
+    //       yield break;
+    //     }
+
+    //     StartQueryTask(); // 轮询直到出答案
+    //   }
+    //   yield break;
+    // }
+
+
+
+    // private Upload_VWUserData uVWUD = new Upload_VWUserData();
+    // [SerializeField] private Respon_VWUserData rVWUD = new Respon_VWUserData();
+
+    // [Serializable]
+    // public class Upload_VWUserData
+    // {
+    //   public string gender;
+    //   public string car;
+    //   public string address;
+    //   public byte[] file;
+    // }
+
+    // [Serializable]
+    // public class Respon_VWUserData
+    // {
+    //   public int code;
+    //   public Respon_VWUserDataData data;
+    // }
+
+    // [Serializable]
+    // public class Respon_VWUserDataData
+    // {
+    //   public string task_code;
+    // }
+
+    // // ==================================================
+    // // 轮询
+
+    // private int queryCount = 0;
+    // private const string VWQUERYURL = @"https://vw-v-space.studiocapsule.cn/api/device/queryTask";
+
+    // public void StartQueryTask() { StartCoroutine(nameof(QueryTaskAction)); }
+    // public void StopQueryTask() { StopCoroutine(nameof(QueryTaskAction)); }
+    // private IEnumerator QueryTaskAction()
+    // {
+    //   yield return new WaitForSeconds(5f); // 先等5秒
+    //   while (true)
+    //   {
+    //     queryCount++;
+
+    //     if (queryCount > 12)
+    //     {
+    //       Debug.Log($"[U2ZCM] 轮询次数过多,停止查询");
+    //       OnVWAvatarFinished?.Invoke(null, false);
+    //       yield break;
+    //     }
+
+    //     WWWForm wwwForm = new WWWForm();
+    //     wwwForm.AddField("task_code", rVWUD.data.task_code);
+    //     using (UnityWebRequest www = UnityWebRequest.Post(VWQUERYURL, wwwForm))
+    //     {
+    //       www.downloadHandler = new DownloadHandlerBuffer();
+    //       yield return www.SendWebRequest();
+
+    //       if (www.result != UnityWebRequest.Result.Success)
+    //       {
+    //         Debug.Log($"[U2ZCM] {www.error}");
+    //         yield break;
+    //       }
+
+    //       Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+    //       rVWAD = JsonConvert.DeserializeObject<Respon_VWAvatarData>(www.downloadHandler.text);
+
+    //       if (rVWUD.code != 0)
+    //       {
+    //         Debug.Log($"[U2ZCM] Code Error");
+    //         OnVWAvatarFinished?.Invoke(null, false);
+    //         yield break;
+    //       }
+
+    //       switch (rVWAD.data.status)
+    //       {
+    //         default: break;
+    //         case 3:
+    //           queryCount = 0;
+    //           Debug.Log("[U2ZCM] 开始下载图片");
+    //           StartCoroutine(nameof(DownloadAvatarAction), rVWAD.data.avatar_url); // 下载图片
+    //           yield break;
+    //         case 4:
+    //           OnVWAvatarFinished?.Invoke(null, false);
+    //           break;
+    //       }
+
+    //       yield return new WaitForSeconds(5f);
+    //     }
+    //   }
+    // }
+
+
+
+    // [SerializeField] private Respon_VWAvatarData rVWAD = new Respon_VWAvatarData();
+
+    // [Serializable]
+    // public class Respon_VWAvatarData
+    // {
+    //   public int code;
+    //   public string message;
+    //   public Respon_VWAvatarDataData data;
+    // }
+
+    // [Serializable]
+    // public class Respon_VWAvatarDataData
+    // {
+    //   public string avatar_url;
+    //   public int status;
+    //   public string status_text;
+    // }
+
+    // // ==================================================
+    // // 获取图片
+
+    // private IEnumerator DownloadAvatarAction(string url)
+    // {
+    //   using (UnityWebRequest www = UnityWebRequestTexture.GetTexture(url))
+    //   {
+    //     yield return www.SendWebRequest();
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     debug_peekQRCode = DownloadHandlerTexture.GetContent(www); // DEBUG
+    //     OnVWAvatarFinished?.Invoke(DownloadHandlerTexture.GetContent(www), true);
+    //   }
+    //   yield break;
+    // }
+
+    // // ==================================================
+    // // 上传图片并获取二维码地址
+
+    // private const string VWUPLOADURL = @"https://vw-v-space.studiocapsule.cn/api/device/finalUpload";
+
+    // public void UploadVWResult(Texture2D value) => StartCoroutine(nameof(UploadVWResultAction), value);
+    // private IEnumerator UploadVWResultAction(Texture2D t2dResult)
+    // {
+    //   WWWForm wwwForm = new WWWForm();
+    //   wwwForm.AddField("task_code", rVWUD.data.task_code);
+    //   wwwForm.AddBinaryData("file", t2dResult.EncodeToJPG(), "t2d.jpg", "image/jpeg");
+
+    //   using (UnityWebRequest www = UnityWebRequest.Post(VWUPLOADURL, wwwForm))
+    //   {
+    //     www.downloadHandler = new DownloadHandlerBuffer();
+    //     yield return www.SendWebRequest();
+
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+
+    //     rVWRD = JsonConvert.DeserializeObject<Respon_VWResultData>(www.downloadHandler.text);
+
+    //     if (rVWRD.code != 0)
+    //     {
+    //       Debug.Log($"[U2ZCM] Code Error");
+    //       yield break;
+    //     }
+
+    //     DownloadQRCode(rVWRD.data.qr_url);
+    //   }
+    //   yield break;
+    // }
+
+
+
+    // [SerializeField] private Respon_VWResultData rVWRD = new Respon_VWResultData();
+
+    // [Serializable]
+    // public class Respon_VWResultData
+    // {
+    //   public int code;
+    //   public string message;
+    //   public Respon_VWResultDataData data;
+    // }
+    // [Serializable]
+    // public class Respon_VWResultDataData
+    // {
+    //   public string qr_url;
+    //   public string file_url;
+    // }
+
+    #endregion
+    // ==================================================
+    // ==================================================
+    // ==================================================
+    #region 2025.04 NikeADT
+
+    // public static UnityAction<UserInfo> OnUserInfoDownloaded;
+
+    // private const string USERINFOREQUESTURL = @"https://nike-adt.studiocapsule.cn/api/device/scanQr";
+
+    // /// <summary>
+    // /// 获取用户信息
+    // /// </summary>
+    // /// <param name="url"></param>
+    // public void GetUserInfo(string url) => StartCoroutine(nameof(GetUserInfoAction), url);
+    // private IEnumerator GetUserInfoAction(string url)
+    // {
+    //   WWWForm wwwForm = new WWWForm();
+    //   wwwForm.AddField("qr_content", url);
+
+    //   using (UnityWebRequest www = UnityWebRequest.Post(USERINFOREQUESTURL, wwwForm))
+    //   {
+    //     www.downloadHandler = new DownloadHandlerBuffer();
+    //     yield return www.SendWebRequest();
+
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+    //     try
+    //     {
+    //       uird = JsonConvert.DeserializeObject<Respon_UserInfoData>(www.downloadHandler.text);
+    //     }
+    //     catch (Exception)
+    //     {
+    //       Debug.Log($"[U2ZCM] 解析错误");
+    //       yield break;
+    //     }
+
+    //     if (uird.code != 0)
+    //     {
+    //       if (OnUserInfoDownloaded != null)
+    //       {
+    //         OnUserInfoDownloaded(null);
+    //       }
+    //       yield break;
+    //     }
+
+    //     if (OnUserInfoDownloaded != null)
+    //     {
+    //       UserInfo ui = new UserInfo();
+    //       ui.name = uird.data.name;
+    //       ui.code = uird.data.code;
+    //       ui.save_car = uird.data.save_car;
+    //       ui.can_play = uird.data.can_play;
+    //       OnUserInfoDownloaded(ui);
+    //     }
+    //   }
+    //   yield break;
+    // }
+
+    // private Respon_UserInfoData uird = new Respon_UserInfoData();
+
+    // [Serializable]
+    // public class Respon_UserInfoData
+    // {
+    //   public int code;
+    //   public string message;
+    //   public UserInfo data;
+    // }
+
+    // [Serializable]
+    // public class UserInfo
+    // {
+    //   public string name;
+    //   public string code;
+    //   public string save_car;
+    //   public string can_play;
+    // }
+
+    // // ==================================================
+
+    // private const string USERIMAGEUPLOADURL = @"https://nike-adt.studiocapsule.cn/api/device/upload";
+
+    // public static UnityAction<string> OnUserImageUploaded;
+
+    // [SerializeField] private Upload_UserImageData uUID;
+    // public void UpdateUserImageData(string user_code, Texture2D t2dPhoto)
+    // {
+    //   uUID = new Upload_UserImageData();
+    //   uUID.user_code = user_code;
+
+    //   byte[] fileBytes = t2dPhoto.EncodeToPNG();
+    //   uUID.file = fileBytes;
+    //   return;
+    // }
+
+    // public void UploadUserImage() => StartCoroutine(nameof(UploadUserImageAction));
+    // private IEnumerator UploadUserImageAction()
+    // {
+    //   WWWForm wwwForm = new WWWForm();
+    //   wwwForm.AddField("user_code", uUID.user_code);
+    //   wwwForm.AddBinaryData("file", uUID.file);
+
+    //   using (UnityWebRequest www = UnityWebRequest.Post(USERIMAGEUPLOADURL, wwwForm))
+    //   {
+    //     www.downloadHandler = new DownloadHandlerBuffer();
+    //     yield return www.SendWebRequest();
+
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+    //     rUID = JsonConvert.DeserializeObject<Respon_UserImageData>(www.downloadHandler.text);
+
+    //     if (rUID.code != 0)
+    //     {
+    //       Debug.Log($"[U2ZCM] Code Error");
+    //       yield break;
+    //     }
+
+    //     DownloadQRCode(rUID.data.qr_url); // 搞图
+    //   }
+    //   yield break;
+    // }
+
+    // public class Upload_UserImageData
+    // {
+    //   public string user_code;
+    //   public byte[] file;
+    // }
+
+    // private Respon_UserImageData rUID = new Respon_UserImageData();
+
+    // [Serializable]
+    // public class Respon_UserImageData
+    // {
+    //   public int code;
+    //   public string message;
+    //   public Respon_UserImageDataData data;
+    // }
+
+    // [Serializable]
+    // public class Respon_UserImageDataData
+    // {
+    //   public string qr_url;
+    // }
+
+    #endregion
+    // ==================================================
+    // ==================================================
+    #region 获取QR图片
+
+    // public static UnityAction<Texture2D> OnQRImageDownloaded;
+
+    // [SerializeField] private Texture2D debug_peekQRCode;
+
+    // public void DownloadQRCode(string url) => StartCoroutine(nameof(DownloadQRCodeAction), url);
+    // private IEnumerator DownloadQRCodeAction(string url)
+    // {
+    //   using (UnityWebRequest www = UnityWebRequestTexture.GetTexture(url))
+    //   {
+    //     yield return www.SendWebRequest();
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     debug_peekQRCode = DownloadHandlerTexture.GetContent(www); // DEBUG
+    //     OnQRImageDownloaded?.Invoke(DownloadHandlerTexture.GetContent(www));
+    //   }
+    //   yield break;
+    // }
+
+    #endregion
+    // ==================================================
+    #region 上传文件流
+
+    // public UnityAction<string> OnUploadFinished;
+
+    // private const string uploadURL = @"https://vw-aud.studiocapsule.cn/api/device/uploadWall";
+
+    // public void UploadData(byte[] fileBytes) => StartCoroutine(nameof(UploadDataAction), fileBytes);
+    // private IEnumerator UploadDataAction(byte[] fileBytes)
+    // {
+    //   WWWForm wwwForm = new WWWForm();
+    //   wwwForm.AddBinaryData("file", fileBytes);
+
+    //   using (UnityWebRequest www = UnityWebRequest.Post(uploadURL, wwwForm))
+    //   {
+
+    //     // www.SetRequestHeader("Content-Type", "multipart/form-data"); // wwwForm不要手动设置避免boundary消失
+    //     www.downloadHandler = new DownloadHandlerBuffer();
+    //     yield return www.SendWebRequest();
+
+    //     if (www.result != UnityWebRequest.Result.Success)
+    //     {
+    //       Debug.Log($"[U2ZCM] {www.error}");
+    //       yield break;
+    //     }
+
+    //     Debug.Log($"[U2ZCM] {www.downloadHandler.text}");
+    //     ResponData responData = JsonConvert.DeserializeObject<ResponData>(www.downloadHandler.text);
+
+    //     // // 解析方案A 动态类型
+    //     // dynamic data = responData.data;
+    //     // string qr = data.qr_url;
+
+    //     // 解析方案B
+    //     JObject data = JObject.FromObject(responData.data);
+    //     string qr_url = data["qr_url"].ToString();
+
+    //     // Debug.Log(qr_url);
+    //     DownloadQRCode(qr_url);
+    //   }
+    // }
+
+    #endregion
+    // ==================================================
+  }
+}

+ 11 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Networking/Upload/Upload2ZCManager.cs.meta

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

+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Plugins.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Plugins/zxing.unity.dll → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins/zxing.unity.dll


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Plugins/zxing.unity.dll.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Plugins/zxing.unity.dll.meta


+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Scripts.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts.meta


+ 1 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Scripts/QRCodeMaster.cs → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts/QRCodeMaster.cs

@@ -101,6 +101,7 @@ namespace ToneTuneToolkit.Other.QR
       qrTexture.SetPixels32(colors);
       qrTexture.Apply();
 
+      Debug.Log("[QRM] QR Code generate successd.");
       return qrTexture;
     }
   }

+ 0 - 0
ToneTuneToolkit/Assets/ToneTuneToolkit/Module/Other/QR/Scripts/QRCodeMaster.cs.meta → ToneTuneToolkit/Assets/ToneTuneToolkit/Modules/Other/QR/Scripts/QRCodeMaster.cs.meta


+ 2 - 2
ToneTuneToolkit/Assets/ToneTuneToolkit/README.md

@@ -22,7 +22,7 @@
 <font size=5><strong>Directory - 文档目录</strong></font><br>
 [INTRODUCTION  介绍](#INTRODUCTION)<br>
 [LOG       &ensp;日志](#LOG)<br>
-[MODULE     &ensp;模组](#MODULE)<br>
+[MODULES     &ensp;模组](#MODULES)<br>
 [SCRIPTS     &ensp;脚本](#SCRIPTS)<br>
 [EXTRA      &ensp;额外内容](#EXTRA)<br>
 [SHADERS     着色器](#SHADERS)<br>
@@ -82,7 +82,7 @@
 
 
 
-## <center><a id="MODULE"></a><font color="#44ff00">*MODULE*</font></center>
+## <center><a id="MODULES"></a><font color="#44ff00">*MODULES*</font></center>
 ### ToneTuneToolkit.IO.Printer/
 * 打印机模组
 

+ 190 - 26
ToneTuneToolkit/Logs/AssetImportWorker0-prev.log

@@ -15,7 +15,7 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker0.log
 -srvPort
-7343
+13697
 Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 [UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,12 +49,12 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
     "memorysetup-temp-allocator-size-cloud-worker=32768"
     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
     "memorysetup-temp-allocator-size-gfx=262144"
-Player connection [28196] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 55753288 [EditorId] 55753288 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [38672] Host "[IP] 172.27.128.1 [Port] 0 [Flags] 2 [Guid] 802369004 [EditorId] 802369004 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
 
-Player connection [28196] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 55753288 [EditorId] 55753288 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [38672] Host "[IP] 172.27.128.1 [Port] 0 [Flags] 2 [Guid] 802369004 [EditorId] 802369004 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
 
 [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 16.06 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 44.35 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Initialize engine version: 2022.3.30f1 (70558241b701)
 [Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
@@ -70,7 +70,7 @@ Initialize mono
 Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
 Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
 Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56488
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56432
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
@@ -79,8 +79,8 @@ Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.020232 seconds.
-- Loaded All Assemblies, in  0.374 seconds
+Registered in 0.024421 seconds.
+- Loaded All Assemblies, in  0.488 seconds
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -90,39 +90,39 @@ Native extension for VisionOS target not found
 [usbmuxd] Send listen message
 Native extension for iOS target not found
 Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 392 ms
+Android Extension - Scanning For ADB Devices 1593 ms
 Native extension for WebGL target not found
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.755 seconds
-Domain Reload Profiling: 1128ms
-	BeginReloadAssembly (106ms)
+- Finished resetting the current domain, in  2.101 seconds
+Domain Reload Profiling: 2587ms
+	BeginReloadAssembly (129ms)
 		ExecutionOrderSort (0ms)
 		DisableScriptedObjects (0ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
 		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (32ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (73ms)
-	LoadAllAssembliesAndSetupDomain (152ms)
-		LoadAssemblies (106ms)
+	RebuildCommonClasses (35ms)
+	RebuildNativeTypeToScriptingClass (10ms)
+	initialDomainReloadingComplete (89ms)
+	LoadAllAssembliesAndSetupDomain (223ms)
+		LoadAssemblies (130ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (148ms)
-			TypeCache.Refresh (146ms)
-				TypeCache.ScanAssembly (130ms)
+		AnalyzeDomain (217ms)
+			TypeCache.Refresh (213ms)
+				TypeCache.ScanAssembly (188ms)
 			ScanForSourceGeneratedMonoScriptInfo (1ms)
 			ResolveRequiredComponents (1ms)
-	FinalizeReload (755ms)
+	FinalizeReload (2101ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (697ms)
+		SetupLoadedEditorAssemblies (2023ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (525ms)
-			SetLoadedEditorAssemblies (4ms)
+			InitializePlatformSupportModulesInManaged (1776ms)
+			SetLoadedEditorAssemblies (6ms)
 			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (117ms)
-			ProcessInitializeOnLoadMethodAttributes (49ms)
+			BeforeProcessingInitializeOnLoad (3ms)
+			ProcessInitializeOnLoadAttributes (180ms)
+			ProcessInitializeOnLoadMethodAttributes (58ms)
 			AfterProcessingInitializeOnLoad (0ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
@@ -130,3 +130,167 @@ Domain Reload Profiling: 1128ms
 ========================================================================
 Worker process is ready to serve import requests
 Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in  1.166 seconds
+Refreshing native plugins compatible for Editor in 73.58 ms, found 3 plugins.
+Native extension for UWP target not found
+Native extension for WindowsStandalone target not found
+Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
+Native extension for VisionOS target not found
+Native extension for iOS target not found
+Native extension for Android target not found
+Native extension for WebGL target not found
+Package Manager log level set to [2]
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in  0.695 seconds
+Domain Reload Profiling: 1857ms
+	BeginReloadAssembly (171ms)
+		ExecutionOrderSort (0ms)
+		DisableScriptedObjects (6ms)
+		BackupInstance (0ms)
+		ReleaseScriptingObjects (0ms)
+		CreateAndSetChildDomain (30ms)
+	RebuildCommonClasses (36ms)
+	RebuildNativeTypeToScriptingClass (14ms)
+	initialDomainReloadingComplete (32ms)
+	LoadAllAssembliesAndSetupDomain (909ms)
+		LoadAssemblies (777ms)
+		RebuildTransferFunctionScriptingTraits (0ms)
+		AnalyzeDomain (233ms)
+			TypeCache.Refresh (208ms)
+				TypeCache.ScanAssembly (185ms)
+			ScanForSourceGeneratedMonoScriptInfo (17ms)
+			ResolveRequiredComponents (6ms)
+	FinalizeReload (695ms)
+		ReleaseScriptCaches (0ms)
+		RebuildScriptCaches (0ms)
+		SetupLoadedEditorAssemblies (534ms)
+			LogAssemblyErrors (0ms)
+			InitializePlatformSupportModulesInManaged (54ms)
+			SetLoadedEditorAssemblies (4ms)
+			RefreshPlugins (0ms)
+			BeforeProcessingInitializeOnLoad (69ms)
+			ProcessInitializeOnLoadAttributes (377ms)
+			ProcessInitializeOnLoadMethodAttributes (21ms)
+			AfterProcessingInitializeOnLoad (9ms)
+			EditorAssembliesLoaded (0ms)
+		ExecutionOrderSort2 (0ms)
+		AwakeInstancesAfterBackupRestoration (9ms)
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.09 seconds
+Refreshing native plugins compatible for Editor in 7.93 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 3251 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 40 unused Assets / (60.0 KB). Loaded Objects now: 3714.
+Memory consumption went from 129.0 MB to 129.0 MB.
+Total: 4.242800 ms (FindLiveObjects: 0.268800 ms CreateObjectMapping: 0.199200 ms MarkObjects: 3.567600 ms  DeleteObjects: 0.206100 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
+  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+========================================================================
+Received Import Request.
+  Time since last request: 107883.656295 seconds.
+  path: Assets/ToneTuneToolkit/Module/Networking/Upload/Upload2OYManager.cs
+  artifactKey: Guid(6ee2856258a90e3438cd8a48df819144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/Module/Networking/Upload/Upload2OYManager.cs using Guid(6ee2856258a90e3438cd8a48df819144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'a1543a8b4e1668d013380b94cb3daae3') in 0.003260 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 0
+========================================================================
+Received Import Request.
+  Time since last request: 0.000027 seconds.
+  path: Assets/ToneTuneToolkit/Module/Networking/Upload
+  artifactKey: Guid(ab299d1f3e8472b4f8d5bc948963fd40) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/Module/Networking/Upload using Guid(ab299d1f3e8472b4f8d5bc948963fd40) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'd181471a3d5a97f96d78672ba7f431ba') in 0.000666 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 0
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in  0.729 seconds
+Refreshing native plugins compatible for Editor in 4.43 ms, found 3 plugins.
+Native extension for UWP target not found
+Native extension for WindowsStandalone target not found
+Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
+Native extension for VisionOS target not found
+Native extension for iOS target not found
+Native extension for Android target not found
+Native extension for WebGL target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in  1.688 seconds
+Domain Reload Profiling: 2415ms
+	BeginReloadAssembly (221ms)
+		ExecutionOrderSort (0ms)
+		DisableScriptedObjects (7ms)
+		BackupInstance (0ms)
+		ReleaseScriptingObjects (0ms)
+		CreateAndSetChildDomain (57ms)
+	RebuildCommonClasses (37ms)
+	RebuildNativeTypeToScriptingClass (14ms)
+	initialDomainReloadingComplete (37ms)
+	LoadAllAssembliesAndSetupDomain (418ms)
+		LoadAssemblies (502ms)
+		RebuildTransferFunctionScriptingTraits (0ms)
+		AnalyzeDomain (34ms)
+			TypeCache.Refresh (16ms)
+				TypeCache.ScanAssembly (2ms)
+			ScanForSourceGeneratedMonoScriptInfo (10ms)
+			ResolveRequiredComponents (7ms)
+	FinalizeReload (1688ms)
+		ReleaseScriptCaches (0ms)
+		RebuildScriptCaches (0ms)
+		SetupLoadedEditorAssemblies (484ms)
+			LogAssemblyErrors (0ms)
+			InitializePlatformSupportModulesInManaged (65ms)
+			SetLoadedEditorAssemblies (5ms)
+			RefreshPlugins (0ms)
+			BeforeProcessingInitializeOnLoad (66ms)
+			ProcessInitializeOnLoadAttributes (316ms)
+			ProcessInitializeOnLoadMethodAttributes (25ms)
+			AfterProcessingInitializeOnLoad (7ms)
+			EditorAssembliesLoaded (0ms)
+		ExecutionOrderSort2 (0ms)
+		AwakeInstancesAfterBackupRestoration (8ms)
+Refreshing native plugins compatible for Editor in 5.94 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 31 unused Assets / (33.7 KB). Loaded Objects now: 3717.
+Memory consumption went from 126.6 MB to 126.6 MB.
+Total: 4.956000 ms (FindLiveObjects: 0.622400 ms CreateObjectMapping: 0.423100 ms MarkObjects: 3.821200 ms  DeleteObjects: 0.086400 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
+  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+========================================================================
+Received Import Request.
+  Time since last request: 44.938718 seconds.
+  path: Assets/ToneTuneToolkit/Module/Networking/Upload/Upload2OYManager.cs
+  artifactKey: Guid(6ee2856258a90e3438cd8a48df819144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/Module/Networking/Upload/Upload2OYManager.cs using Guid(6ee2856258a90e3438cd8a48df819144) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '1d31cc823c4380ef23af79d7676a525b') in 0.002000 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 0

File diff suppressed because it is too large
+ 91 - 842
ToneTuneToolkit/Logs/AssetImportWorker0.log


+ 174 - 26
ToneTuneToolkit/Logs/AssetImportWorker1-prev.log

@@ -15,7 +15,7 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker1.log
 -srvPort
-7343
+13697
 Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 [UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,12 +49,12 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
     "memorysetup-temp-allocator-size-cloud-worker=32768"
     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
     "memorysetup-temp-allocator-size-gfx=262144"
-Player connection [37436] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 1090317591 [EditorId] 1090317591 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [31416] Host "[IP] 172.27.128.1 [Port] 0 [Flags] 2 [Guid] 2519302685 [EditorId] 2519302685 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
 
-Player connection [37436] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 1090317591 [EditorId] 1090317591 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [31416] Host "[IP] 172.27.128.1 [Port] 0 [Flags] 2 [Guid] 2519302685 [EditorId] 2519302685 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
 
 [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 16.60 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 28.35 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Initialize engine version: 2022.3.30f1 (70558241b701)
 [Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
@@ -70,7 +70,7 @@ Initialize mono
 Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
 Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
 Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56012
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56492
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
@@ -79,8 +79,8 @@ Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.019172 seconds.
-- Loaded All Assemblies, in  0.383 seconds
+Registered in 0.023429 seconds.
+- Loaded All Assemblies, in  0.495 seconds
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -90,39 +90,39 @@ Native extension for VisionOS target not found
 [usbmuxd] Send listen message
 Native extension for iOS target not found
 Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 382 ms
+Android Extension - Scanning For ADB Devices 1592 ms
 Native extension for WebGL target not found
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.749 seconds
-Domain Reload Profiling: 1132ms
-	BeginReloadAssembly (115ms)
+- Finished resetting the current domain, in  2.096 seconds
+Domain Reload Profiling: 2589ms
+	BeginReloadAssembly (131ms)
 		ExecutionOrderSort (0ms)
 		DisableScriptedObjects (0ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
 		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (33ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (70ms)
-	LoadAllAssembliesAndSetupDomain (155ms)
-		LoadAssemblies (114ms)
+	RebuildCommonClasses (34ms)
+	RebuildNativeTypeToScriptingClass (10ms)
+	initialDomainReloadingComplete (87ms)
+	LoadAllAssembliesAndSetupDomain (230ms)
+		LoadAssemblies (133ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (151ms)
-			TypeCache.Refresh (149ms)
-				TypeCache.ScanAssembly (135ms)
+		AnalyzeDomain (224ms)
+			TypeCache.Refresh (220ms)
+				TypeCache.ScanAssembly (195ms)
 			ScanForSourceGeneratedMonoScriptInfo (1ms)
 			ResolveRequiredComponents (1ms)
-	FinalizeReload (750ms)
+	FinalizeReload (2097ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (690ms)
+		SetupLoadedEditorAssemblies (2021ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (517ms)
-			SetLoadedEditorAssemblies (4ms)
+			InitializePlatformSupportModulesInManaged (1773ms)
+			SetLoadedEditorAssemblies (6ms)
 			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (120ms)
-			ProcessInitializeOnLoadMethodAttributes (47ms)
+			BeforeProcessingInitializeOnLoad (3ms)
+			ProcessInitializeOnLoadAttributes (180ms)
+			ProcessInitializeOnLoadMethodAttributes (59ms)
 			AfterProcessingInitializeOnLoad (0ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
@@ -130,3 +130,151 @@ Domain Reload Profiling: 1132ms
 ========================================================================
 Worker process is ready to serve import requests
 Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in  1.167 seconds
+Refreshing native plugins compatible for Editor in 72.50 ms, found 3 plugins.
+Native extension for UWP target not found
+Native extension for WindowsStandalone target not found
+Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
+Native extension for VisionOS target not found
+Native extension for iOS target not found
+Native extension for Android target not found
+Native extension for WebGL target not found
+Package Manager log level set to [2]
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in  0.695 seconds
+Domain Reload Profiling: 1859ms
+	BeginReloadAssembly (170ms)
+		ExecutionOrderSort (0ms)
+		DisableScriptedObjects (6ms)
+		BackupInstance (0ms)
+		ReleaseScriptingObjects (0ms)
+		CreateAndSetChildDomain (28ms)
+	RebuildCommonClasses (37ms)
+	RebuildNativeTypeToScriptingClass (11ms)
+	initialDomainReloadingComplete (32ms)
+	LoadAllAssembliesAndSetupDomain (914ms)
+		LoadAssemblies (781ms)
+		RebuildTransferFunctionScriptingTraits (0ms)
+		AnalyzeDomain (235ms)
+			TypeCache.Refresh (209ms)
+				TypeCache.ScanAssembly (189ms)
+			ScanForSourceGeneratedMonoScriptInfo (18ms)
+			ResolveRequiredComponents (6ms)
+	FinalizeReload (695ms)
+		ReleaseScriptCaches (0ms)
+		RebuildScriptCaches (0ms)
+		SetupLoadedEditorAssemblies (537ms)
+			LogAssemblyErrors (0ms)
+			InitializePlatformSupportModulesInManaged (57ms)
+			SetLoadedEditorAssemblies (3ms)
+			RefreshPlugins (0ms)
+			BeforeProcessingInitializeOnLoad (67ms)
+			ProcessInitializeOnLoadAttributes (379ms)
+			ProcessInitializeOnLoadMethodAttributes (21ms)
+			AfterProcessingInitializeOnLoad (8ms)
+			EditorAssembliesLoaded (0ms)
+		ExecutionOrderSort2 (0ms)
+		AwakeInstancesAfterBackupRestoration (9ms)
+Launched and connected shader compiler UnityShaderCompiler.exe after 0.08 seconds
+Refreshing native plugins compatible for Editor in 7.91 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 3251 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 40 unused Assets / (59.6 KB). Loaded Objects now: 3714.
+Memory consumption went from 129.0 MB to 129.0 MB.
+Total: 4.264400 ms (FindLiveObjects: 0.360100 ms CreateObjectMapping: 0.226700 ms MarkObjects: 3.496100 ms  DeleteObjects: 0.180200 ms)
+
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
+  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+========================================================================
+Received Import Request.
+  Time since last request: 107883.656614 seconds.
+  path: Assets/ToneTuneToolkit/Module/Networking
+  artifactKey: Guid(6bef49af53347834fb43fa6638c83965) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/Module/Networking using Guid(6bef49af53347834fb43fa6638c83965) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '8010097579914903a9e231b1f74a705a') in 0.002975 seconds
+Number of updated asset objects reloaded before import = 0
+Number of asset objects unloaded after import = 0
+========================================================================
+Received Prepare
+Begin MonoManager ReloadAssembly
+- Loaded All Assemblies, in  0.725 seconds
+Refreshing native plugins compatible for Editor in 4.58 ms, found 3 plugins.
+Native extension for UWP target not found
+Native extension for WindowsStandalone target not found
+Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
+Native extension for VisionOS target not found
+Native extension for iOS target not found
+Native extension for Android target not found
+Native extension for WebGL target not found
+[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
+[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
+[Package Manager] Cannot connect to Unity Package Manager local server
+Mono: successfully reloaded assembly
+- Finished resetting the current domain, in  1.688 seconds
+Domain Reload Profiling: 2409ms
+	BeginReloadAssembly (225ms)
+		ExecutionOrderSort (0ms)
+		DisableScriptedObjects (6ms)
+		BackupInstance (0ms)
+		ReleaseScriptingObjects (0ms)
+		CreateAndSetChildDomain (60ms)
+	RebuildCommonClasses (44ms)
+	RebuildNativeTypeToScriptingClass (12ms)
+	initialDomainReloadingComplete (32ms)
+	LoadAllAssembliesAndSetupDomain (406ms)
+		LoadAssemblies (497ms)
+		RebuildTransferFunctionScriptingTraits (0ms)
+		AnalyzeDomain (34ms)
+			TypeCache.Refresh (16ms)
+				TypeCache.ScanAssembly (2ms)
+			ScanForSourceGeneratedMonoScriptInfo (10ms)
+			ResolveRequiredComponents (7ms)
+	FinalizeReload (1689ms)
+		ReleaseScriptCaches (0ms)
+		RebuildScriptCaches (0ms)
+		SetupLoadedEditorAssemblies (481ms)
+			LogAssemblyErrors (0ms)
+			InitializePlatformSupportModulesInManaged (63ms)
+			SetLoadedEditorAssemblies (5ms)
+			RefreshPlugins (0ms)
+			BeforeProcessingInitializeOnLoad (64ms)
+			ProcessInitializeOnLoadAttributes (319ms)
+			ProcessInitializeOnLoadMethodAttributes (23ms)
+			AfterProcessingInitializeOnLoad (8ms)
+			EditorAssembliesLoaded (0ms)
+		ExecutionOrderSort2 (0ms)
+		AwakeInstancesAfterBackupRestoration (8ms)
+Refreshing native plugins compatible for Editor in 6.95 ms, found 3 plugins.
+Preloading 0 native plugins for Editor in 0.00 ms.
+Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 31 unused Assets / (34.8 KB). Loaded Objects now: 3717.
+Memory consumption went from 126.6 MB to 126.6 MB.
+Total: 4.997400 ms (FindLiveObjects: 0.348400 ms CreateObjectMapping: 0.249700 ms MarkObjects: 4.318000 ms  DeleteObjects: 0.079500 ms)
+
+Prepare: number of updated asset objects reloaded= 0
+AssetImportParameters requested are different than current active one (requested -> active):
+  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
+  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
+  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
+  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
+  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
+  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
+  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
+  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
+  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
+  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
+  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 

+ 86 - 741
ToneTuneToolkit/Logs/AssetImportWorker1.log

@@ -15,7 +15,7 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 -logFile
 Logs/AssetImportWorker1.log
 -srvPort
-11797
+5948
 Successfully changed project path to: D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
 [UnityMemory] Configuration Parameters - Can be set up in boot.config
@@ -49,12 +49,12 @@ D:/Workflow/Project/Unity/ToneTuneToolkit/ToneTuneToolkit
     "memorysetup-temp-allocator-size-cloud-worker=32768"
     "memorysetup-temp-allocator-size-gi-baking-worker=262144"
     "memorysetup-temp-allocator-size-gfx=262144"
-Player connection [29532] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 1442634366 [EditorId] 1442634366 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
+Player connection [28564] Host "[IP] 172.26.80.1 [Port] 0 [Flags] 2 [Guid] 2620795295 [EditorId] 2620795295 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]...
 
-Player connection [29532] Host "[IP] 172.20.144.1 [Port] 0 [Flags] 2 [Guid] 1442634366 [EditorId] 1442634366 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
+Player connection [28564] Host "[IP] 172.26.80.1 [Port] 0 [Flags] 2 [Guid] 2620795295 [EditorId] 2620795295 [Version] 1048832 [Id] WindowsEditor(7,Capsule-Engine) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]...
 
 [Physics::Module] Initialized MultithreadedJobDispatcher with 15 workers.
-Refreshing native plugins compatible for Editor in 75.22 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 66.87 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
 Initialize engine version: 2022.3.30f1 (70558241b701)
 [Subsystems] Discovering subsystems at path C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Resources/UnitySubsystems
@@ -70,7 +70,7 @@ Initialize mono
 Mono path[0] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/Managed'
 Mono path[1] = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32'
 Mono config path = 'C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/MonoBleedingEdge/etc'
-Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56536
+Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56940
 Begin MonoManager ReloadAssembly
 Registering precompiled unity dll's ...
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll
@@ -79,8 +79,8 @@ Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer/UnityEditor.VisionOS.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
 Register platform support module: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/MetroSupport/UnityEditor.UWP.Extensions.dll
-Registered in 0.024170 seconds.
-- Loaded All Assemblies, in  0.438 seconds
+Registered in 0.024277 seconds.
+- Loaded All Assemblies, in  0.382 seconds
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -90,39 +90,39 @@ Native extension for VisionOS target not found
 [usbmuxd] Send listen message
 Native extension for iOS target not found
 Native extension for Android target not found
-Android Extension - Scanning For ADB Devices 2348 ms
+Android Extension - Scanning For ADB Devices 399 ms
 Native extension for WebGL target not found
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  2.765 seconds
-Domain Reload Profiling: 3201ms
-	BeginReloadAssembly (147ms)
+- Finished resetting the current domain, in  0.816 seconds
+Domain Reload Profiling: 1197ms
+	BeginReloadAssembly (136ms)
 		ExecutionOrderSort (0ms)
 		DisableScriptedObjects (0ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
 		CreateAndSetChildDomain (1ms)
-	RebuildCommonClasses (36ms)
-	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (79ms)
-	LoadAllAssembliesAndSetupDomain (164ms)
-		LoadAssemblies (147ms)
+	RebuildCommonClasses (28ms)
+	RebuildNativeTypeToScriptingClass (8ms)
+	initialDomainReloadingComplete (72ms)
+	LoadAllAssembliesAndSetupDomain (137ms)
+		LoadAssemblies (134ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (160ms)
-			TypeCache.Refresh (158ms)
-				TypeCache.ScanAssembly (143ms)
+		AnalyzeDomain (134ms)
+			TypeCache.Refresh (132ms)
+				TypeCache.ScanAssembly (121ms)
 			ScanForSourceGeneratedMonoScriptInfo (0ms)
-			ResolveRequiredComponents (0ms)
-	FinalizeReload (2765ms)
+			ResolveRequiredComponents (1ms)
+	FinalizeReload (817ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (2705ms)
+		SetupLoadedEditorAssemblies (766ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (2488ms)
-			SetLoadedEditorAssemblies (4ms)
+			InitializePlatformSupportModulesInManaged (531ms)
+			SetLoadedEditorAssemblies (5ms)
 			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (2ms)
-			ProcessInitializeOnLoadAttributes (163ms)
-			ProcessInitializeOnLoadMethodAttributes (48ms)
+			BeforeProcessingInitializeOnLoad (4ms)
+			ProcessInitializeOnLoadAttributes (173ms)
+			ProcessInitializeOnLoadMethodAttributes (52ms)
 			AfterProcessingInitializeOnLoad (0ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
@@ -130,8 +130,8 @@ Domain Reload Profiling: 3201ms
 ========================================================================
 Worker process is ready to serve import requests
 Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.899 seconds
-Refreshing native plugins compatible for Editor in 3.94 ms, found 3 plugins.
+- Loaded All Assemblies, in  0.885 seconds
+Refreshing native plugins compatible for Editor in 3.59 ms, found 3 plugins.
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
 Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
@@ -144,47 +144,47 @@ Package Manager log level set to [2]
 [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
 [Package Manager] Cannot connect to Unity Package Manager local server
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.608 seconds
-Domain Reload Profiling: 1468ms
-	BeginReloadAssembly (155ms)
+- Finished resetting the current domain, in  0.639 seconds
+Domain Reload Profiling: 1521ms
+	BeginReloadAssembly (165ms)
 		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
+		DisableScriptedObjects (6ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (28ms)
-	RebuildCommonClasses (33ms)
-	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (30ms)
-	LoadAllAssembliesAndSetupDomain (632ms)
-		LoadAssemblies (521ms)
+		CreateAndSetChildDomain (30ms)
+	RebuildCommonClasses (35ms)
+	RebuildNativeTypeToScriptingClass (14ms)
+	initialDomainReloadingComplete (33ms)
+	LoadAllAssembliesAndSetupDomain (635ms)
+		LoadAssemblies (531ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (200ms)
-			TypeCache.Refresh (178ms)
-				TypeCache.ScanAssembly (159ms)
-			ScanForSourceGeneratedMonoScriptInfo (15ms)
+		AnalyzeDomain (198ms)
+			TypeCache.Refresh (174ms)
+				TypeCache.ScanAssembly (153ms)
+			ScanForSourceGeneratedMonoScriptInfo (17ms)
 			ResolveRequiredComponents (5ms)
-	FinalizeReload (608ms)
+	FinalizeReload (639ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (453ms)
+		SetupLoadedEditorAssemblies (479ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (49ms)
+			InitializePlatformSupportModulesInManaged (48ms)
 			SetLoadedEditorAssemblies (3ms)
 			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (58ms)
-			ProcessInitializeOnLoadAttributes (311ms)
-			ProcessInitializeOnLoadMethodAttributes (24ms)
-			AfterProcessingInitializeOnLoad (7ms)
+			BeforeProcessingInitializeOnLoad (65ms)
+			ProcessInitializeOnLoadAttributes (329ms)
+			ProcessInitializeOnLoadMethodAttributes (27ms)
+			AfterProcessingInitializeOnLoad (6ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (8ms)
+		AwakeInstancesAfterBackupRestoration (7ms)
 Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds
-Refreshing native plugins compatible for Editor in 4.12 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 6.29 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3250 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 40 unused Assets / (60.1 KB). Loaded Objects now: 3713.
+Unloading 3252 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 40 unused Assets / (59.7 KB). Loaded Objects now: 3715.
 Memory consumption went from 129.0 MB to 128.9 MB.
-Total: 4.695700 ms (FindLiveObjects: 0.317300 ms CreateObjectMapping: 0.118000 ms MarkObjects: 4.126000 ms  DeleteObjects: 0.133000 ms)
+Total: 4.194400 ms (FindLiveObjects: 0.437400 ms CreateObjectMapping: 0.139000 ms MarkObjects: 3.433700 ms  DeleteObjects: 0.182500 ms)
 
 AssetImportParameters requested are different than current active one (requested -> active):
   custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
@@ -201,529 +201,16 @@ AssetImportParameters requested are different than current active one (requested
   custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
 ========================================================================
 Received Import Request.
-  Time since last request: 237098.014568 seconds.
-  path: Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterFileProcessor.cs
-  artifactKey: Guid(b9136fa7d2a803f4fbd8a16e2ff81d86) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterFileProcessor.cs using Guid(b9136fa7d2a803f4fbd8a16e2ff81d86) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ed2cd3659232bf94d971e18cd7907fab') in 0.003376 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Import Request.
-  Time since last request: 0.000027 seconds.
-  path: Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterHandler.cs
-  artifactKey: Guid(389f4ef3b141f064d889e79e8617c7f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterHandler.cs using Guid(389f4ef3b141f064d889e79e8617c7f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: 'ef2827250037375c02b94c167f9d3e1f') in 0.000499 seconds
-Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Import Request.
-  Time since last request: 0.000036 seconds.
-  path: Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterManager.cs
-  artifactKey: Guid(0951266cf3aff1f468a37fe9eff01ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
-Start importing Assets/ToneTuneToolkit/IO/Printer/Scripts/PrinterManager.cs using Guid(0951266cf3aff1f468a37fe9eff01ca6) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '5ddd9359cdbbedcbcaa2d6e20b40130c') in 0.000440 seconds
+  Time since last request: 278717.758006 seconds.
+  path: Assets/ToneTuneToolkit/README.md
+  artifactKey: Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
+Start importing Assets/ToneTuneToolkit/README.md using Guid(00277320b88355049b5c0adbb1dc7925) Importer(815301076,1909f56bfc062723c751e8b465ee728b)  -> (artifact id: '0ce87e8de01afd9c60c6e8b00fe37a34') in 0.010726 seconds
 Number of updated asset objects reloaded before import = 0
-Number of asset objects unloaded after import = 0
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  1.070 seconds
-Refreshing native plugins compatible for Editor in 6.91 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.518 seconds
-Domain Reload Profiling: 2582ms
-	BeginReloadAssembly (309ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (9ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (88ms)
-	RebuildCommonClasses (64ms)
-	RebuildNativeTypeToScriptingClass (18ms)
-	initialDomainReloadingComplete (52ms)
-	LoadAllAssembliesAndSetupDomain (622ms)
-		LoadAssemblies (707ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (62ms)
-			TypeCache.Refresh (25ms)
-				TypeCache.ScanAssembly (3ms)
-			ScanForSourceGeneratedMonoScriptInfo (20ms)
-			ResolveRequiredComponents (14ms)
-	FinalizeReload (1518ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (827ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (68ms)
-			SetLoadedEditorAssemblies (7ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (94ms)
-			ProcessInitializeOnLoadAttributes (614ms)
-			ProcessInitializeOnLoadMethodAttributes (30ms)
-			AfterProcessingInitializeOnLoad (14ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (9ms)
-Refreshing native plugins compatible for Editor in 5.52 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3239 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.7 KB). Loaded Objects now: 3716.
-Memory consumption went from 126.6 MB to 126.5 MB.
-Total: 7.905600 ms (FindLiveObjects: 0.649200 ms CreateObjectMapping: 0.807700 ms MarkObjects: 6.347800 ms  DeleteObjects: 0.099100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
+Number of asset objects unloaded after import = 1
 ========================================================================
 Received Prepare
 Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.564 seconds
-Refreshing native plugins compatible for Editor in 3.18 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  1.665 seconds
-Domain Reload Profiling: 2227ms
-	BeginReloadAssembly (147ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (36ms)
-	RebuildCommonClasses (28ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (27ms)
-	LoadAllAssembliesAndSetupDomain (351ms)
-		LoadAssemblies (402ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (22ms)
-			TypeCache.Refresh (9ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (1665ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (356ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (48ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (51ms)
-			ProcessInitializeOnLoadAttributes (229ms)
-			ProcessInitializeOnLoadMethodAttributes (18ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.94 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.7 KB). Loaded Objects now: 3719.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 2.747200 ms (FindLiveObjects: 0.246400 ms CreateObjectMapping: 0.089900 ms MarkObjects: 2.350300 ms  DeleteObjects: 0.059300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.522 seconds
-Refreshing native plugins compatible for Editor in 3.34 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.734 seconds
-Domain Reload Profiling: 1254ms
-	BeginReloadAssembly (151ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (34ms)
-	RebuildCommonClasses (27ms)
-	RebuildNativeTypeToScriptingClass (11ms)
-	initialDomainReloadingComplete (28ms)
-	LoadAllAssembliesAndSetupDomain (302ms)
-		LoadAssemblies (318ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (67ms)
-			TypeCache.Refresh (48ms)
-				TypeCache.ScanAssembly (38ms)
-			ScanForSourceGeneratedMonoScriptInfo (12ms)
-			ResolveRequiredComponents (5ms)
-	FinalizeReload (734ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (353ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (46ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (53ms)
-			ProcessInitializeOnLoadAttributes (225ms)
-			ProcessInitializeOnLoadMethodAttributes (19ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.41 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.7 KB). Loaded Objects now: 3722.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 3.123100 ms (FindLiveObjects: 0.310600 ms CreateObjectMapping: 0.103000 ms MarkObjects: 2.641900 ms  DeleteObjects: 0.066300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.478 seconds
-Refreshing native plugins compatible for Editor in 3.17 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.741 seconds
-Domain Reload Profiling: 1216ms
-	BeginReloadAssembly (140ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (33ms)
-	RebuildCommonClasses (27ms)
-	RebuildNativeTypeToScriptingClass (11ms)
-	initialDomainReloadingComplete (28ms)
-	LoadAllAssembliesAndSetupDomain (268ms)
-		LoadAssemblies (317ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (24ms)
-			TypeCache.Refresh (11ms)
-				TypeCache.ScanAssembly (2ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (741ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (349ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (42ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (52ms)
-			ProcessInitializeOnLoadAttributes (222ms)
-			ProcessInitializeOnLoadMethodAttributes (21ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.16 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.8 KB). Loaded Objects now: 3725.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 2.822800 ms (FindLiveObjects: 0.298100 ms CreateObjectMapping: 0.093100 ms MarkObjects: 2.375000 ms  DeleteObjects: 0.055400 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.471 seconds
-Refreshing native plugins compatible for Editor in 3.94 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.755 seconds
-Domain Reload Profiling: 1224ms
-	BeginReloadAssembly (145ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (35ms)
-	RebuildCommonClasses (29ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (27ms)
-	LoadAllAssembliesAndSetupDomain (258ms)
-		LoadAssemblies (313ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (23ms)
-			TypeCache.Refresh (9ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (756ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (348ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (42ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (51ms)
-			ProcessInitializeOnLoadAttributes (225ms)
-			ProcessInitializeOnLoadMethodAttributes (18ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 5.67 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.8 KB). Loaded Objects now: 3728.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 2.597200 ms (FindLiveObjects: 0.241000 ms CreateObjectMapping: 0.091400 ms MarkObjects: 2.210200 ms  DeleteObjects: 0.053100 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.492 seconds
-Refreshing native plugins compatible for Editor in 3.35 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.792 seconds
-Domain Reload Profiling: 1281ms
-	BeginReloadAssembly (152ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (34ms)
-	RebuildCommonClasses (29ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (28ms)
-	LoadAllAssembliesAndSetupDomain (271ms)
-		LoadAssemblies (331ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (23ms)
-			TypeCache.Refresh (10ms)
-				TypeCache.ScanAssembly (2ms)
-			ScanForSourceGeneratedMonoScriptInfo (6ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (792ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (390ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (46ms)
-			SetLoadedEditorAssemblies (4ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (57ms)
-			ProcessInitializeOnLoadAttributes (255ms)
-			ProcessInitializeOnLoadMethodAttributes (21ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.22 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3240 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 31 unused Assets / (33.7 KB). Loaded Objects now: 3731.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 3.768800 ms (FindLiveObjects: 0.278700 ms CreateObjectMapping: 0.118600 ms MarkObjects: 3.231100 ms  DeleteObjects: 0.138300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.551 seconds
-Refreshing native plugins compatible for Editor in 3.47 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.822 seconds
-Domain Reload Profiling: 1361ms
-	BeginReloadAssembly (150ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (34ms)
-	RebuildCommonClasses (28ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (30ms)
-	LoadAllAssembliesAndSetupDomain (322ms)
-		LoadAssemblies (378ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (24ms)
-			TypeCache.Refresh (10ms)
-				TypeCache.ScanAssembly (1ms)
-			ScanForSourceGeneratedMonoScriptInfo (7ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (823ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (394ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (64ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (51ms)
-			ProcessInitializeOnLoadAttributes (251ms)
-			ProcessInitializeOnLoadMethodAttributes (18ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.89 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3239 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3734.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 2.472500 ms (FindLiveObjects: 0.214800 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.122800 ms  DeleteObjects: 0.047700 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.498 seconds
+- Loaded All Assemblies, in  1.330 seconds
 Refreshing native plugins compatible for Editor in 3.30 ms, found 3 plugins.
 Native extension for UWP target not found
 Native extension for WindowsStandalone target not found
@@ -736,188 +223,46 @@ Native extension for WebGL target not found
 [Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
 [Package Manager] Cannot connect to Unity Package Manager local server
 Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.736 seconds
-Domain Reload Profiling: 1232ms
-	BeginReloadAssembly (147ms)
+- Finished resetting the current domain, in  2.129 seconds
+Domain Reload Profiling: 3457ms
+	BeginReloadAssembly (459ms)
 		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
+		DisableScriptedObjects (16ms)
 		BackupInstance (0ms)
 		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (34ms)
-	RebuildCommonClasses (29ms)
+		CreateAndSetChildDomain (154ms)
+	RebuildCommonClasses (36ms)
 	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (33ms)
-	LoadAllAssembliesAndSetupDomain (277ms)
-		LoadAssemblies (331ms)
+	initialDomainReloadingComplete (51ms)
+	LoadAllAssembliesAndSetupDomain (771ms)
+		LoadAssemblies (963ms)
 		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (24ms)
-			TypeCache.Refresh (10ms)
+		AnalyzeDomain (36ms)
+			TypeCache.Refresh (18ms)
 				TypeCache.ScanAssembly (2ms)
-			ScanForSourceGeneratedMonoScriptInfo (7ms)
-			ResolveRequiredComponents (6ms)
-	FinalizeReload (737ms)
+			ScanForSourceGeneratedMonoScriptInfo (8ms)
+			ResolveRequiredComponents (8ms)
+	FinalizeReload (2130ms)
 		ReleaseScriptCaches (0ms)
 		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (353ms)
+		SetupLoadedEditorAssemblies (483ms)
 			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (46ms)
-			SetLoadedEditorAssemblies (4ms)
+			InitializePlatformSupportModulesInManaged (53ms)
+			SetLoadedEditorAssemblies (6ms)
 			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (51ms)
-			ProcessInitializeOnLoadAttributes (225ms)
-			ProcessInitializeOnLoadMethodAttributes (18ms)
-			AfterProcessingInitializeOnLoad (8ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 5.42 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3239 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3737.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 3.063500 ms (FindLiveObjects: 0.327100 ms CreateObjectMapping: 0.109100 ms MarkObjects: 2.563000 ms  DeleteObjects: 0.063300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.544 seconds
-Refreshing native plugins compatible for Editor in 3.15 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.740 seconds
-Domain Reload Profiling: 1281ms
-	BeginReloadAssembly (150ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (35ms)
-	RebuildCommonClasses (28ms)
-	RebuildNativeTypeToScriptingClass (9ms)
-	initialDomainReloadingComplete (29ms)
-	LoadAllAssembliesAndSetupDomain (326ms)
-		LoadAssemblies (337ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (70ms)
-			TypeCache.Refresh (51ms)
-				TypeCache.ScanAssembly (41ms)
-			ScanForSourceGeneratedMonoScriptInfo (12ms)
-			ResolveRequiredComponents (5ms)
-	FinalizeReload (740ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (362ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (42ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (52ms)
-			ProcessInitializeOnLoadAttributes (241ms)
-			ProcessInitializeOnLoadMethodAttributes (17ms)
+			BeforeProcessingInitializeOnLoad (62ms)
+			ProcessInitializeOnLoadAttributes (327ms)
+			ProcessInitializeOnLoadMethodAttributes (27ms)
 			AfterProcessingInitializeOnLoad (7ms)
 			EditorAssembliesLoaded (0ms)
 		ExecutionOrderSort2 (0ms)
 		AwakeInstancesAfterBackupRestoration (10ms)
-Refreshing native plugins compatible for Editor in 6.32 ms, found 3 plugins.
-Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3239 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (33.2 KB). Loaded Objects now: 3740.
-Memory consumption went from 126.8 MB to 126.8 MB.
-Total: 2.708600 ms (FindLiveObjects: 0.263600 ms CreateObjectMapping: 0.105400 ms MarkObjects: 2.289600 ms  DeleteObjects: 0.049300 ms)
-
-Prepare: number of updated asset objects reloaded= 0
-AssetImportParameters requested are different than current active one (requested -> active):
-  custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> 
-  custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> 
-  custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> 
-  custom:CustomObjectIndexerAttribute: 9a22284fe3817be447336de3de66b15e -> 
-  custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> 
-  custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> 
-  custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> 
-  custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> 
-  custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> 
-  custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> 
-  custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-  custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> 
-========================================================================
-Received Prepare
-Begin MonoManager ReloadAssembly
-- Loaded All Assemblies, in  0.562 seconds
-Refreshing native plugins compatible for Editor in 3.32 ms, found 3 plugins.
-Native extension for UWP target not found
-Native extension for WindowsStandalone target not found
-Failed to load: C:/Workflow/Software/Unity/Editor/2022.3.30f1/Editor/Data/PlaybackEngines/VisionOSPlayer\x64\UnityEditor.VisionOS.Native.dll
-Native extension for VisionOS target not found
-Native extension for iOS target not found
-Native extension for Android target not found
-Native extension for WebGL target not found
-[Package Manager] Server::EnsureServerProcessIsRunning -- launch failed, reason: Unity was launched with the -noUpm command-line argument
-[Package Manager] UpmClient::Send -- Unable to send message (not connected to UPM process).
-[Package Manager] Cannot connect to Unity Package Manager local server
-Mono: successfully reloaded assembly
-- Finished resetting the current domain, in  0.736 seconds
-Domain Reload Profiling: 1295ms
-	BeginReloadAssembly (152ms)
-		ExecutionOrderSort (0ms)
-		DisableScriptedObjects (5ms)
-		BackupInstance (0ms)
-		ReleaseScriptingObjects (0ms)
-		CreateAndSetChildDomain (37ms)
-	RebuildCommonClasses (30ms)
-	RebuildNativeTypeToScriptingClass (10ms)
-	initialDomainReloadingComplete (28ms)
-	LoadAllAssembliesAndSetupDomain (340ms)
-		LoadAssemblies (348ms)
-		RebuildTransferFunctionScriptingTraits (0ms)
-		AnalyzeDomain (73ms)
-			TypeCache.Refresh (55ms)
-				TypeCache.ScanAssembly (45ms)
-			ScanForSourceGeneratedMonoScriptInfo (11ms)
-			ResolveRequiredComponents (5ms)
-	FinalizeReload (736ms)
-		ReleaseScriptCaches (0ms)
-		RebuildScriptCaches (0ms)
-		SetupLoadedEditorAssemblies (350ms)
-			LogAssemblyErrors (0ms)
-			InitializePlatformSupportModulesInManaged (45ms)
-			SetLoadedEditorAssemblies (3ms)
-			RefreshPlugins (0ms)
-			BeforeProcessingInitializeOnLoad (52ms)
-			ProcessInitializeOnLoadAttributes (227ms)
-			ProcessInitializeOnLoadMethodAttributes (16ms)
-			AfterProcessingInitializeOnLoad (7ms)
-			EditorAssembliesLoaded (0ms)
-		ExecutionOrderSort2 (0ms)
-		AwakeInstancesAfterBackupRestoration (7ms)
-Refreshing native plugins compatible for Editor in 3.74 ms, found 3 plugins.
+Refreshing native plugins compatible for Editor in 6.25 ms, found 3 plugins.
 Preloading 0 native plugins for Editor in 0.00 ms.
-Unloading 3239 Unused Serialized files (Serialized files now loaded: 0)
-Unloading 30 unused Assets / (34.3 KB). Loaded Objects now: 3743.
-Memory consumption went from 126.9 MB to 126.9 MB.
-Total: 2.743100 ms (FindLiveObjects: 0.282400 ms CreateObjectMapping: 0.091300 ms MarkObjects: 2.318200 ms  DeleteObjects: 0.050200 ms)
+Unloading 3241 Unused Serialized files (Serialized files now loaded: 0)
+Unloading 31 unused Assets / (33.6 KB). Loaded Objects now: 3719.
+Memory consumption went from 126.6 MB to 126.6 MB.
+Total: 4.315300 ms (FindLiveObjects: 0.260700 ms CreateObjectMapping: 0.091500 ms MarkObjects: 3.833500 ms  DeleteObjects: 0.128600 ms)
 
 Prepare: number of updated asset objects reloaded= 0
 AssetImportParameters requested are different than current active one (requested -> active):

+ 23 - 23
ToneTuneToolkit/UserSettings/Layouts/default-2022.dwlt

@@ -43,8 +43,8 @@ MonoBehaviour:
     y: 0
     width: 555.2
     height: 1018.80005
-  m_MinSize: {x: 200, y: 200}
-  m_MaxSize: {x: 4000, y: 4000}
+  m_MinSize: {x: 201, y: 221}
+  m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 16}
   m_Panes:
   - {fileID: 16}
@@ -150,7 +150,7 @@ MonoBehaviour:
   m_MinSize: {x: 400, y: 100}
   m_MaxSize: {x: 32384, y: 16192}
   vertical: 0
-  controlID: 124
+  controlID: 122
 --- !u!114 &7
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -191,8 +191,8 @@ MonoBehaviour:
     y: 0
     width: 727.99994
     height: 1018.80005
-  m_MinSize: {x: 202, y: 221}
-  m_MaxSize: {x: 4002, y: 4021}
+  m_MinSize: {x: 200, y: 200}
+  m_MaxSize: {x: 4000, y: 4000}
   m_ActualView: {fileID: 17}
   m_Panes:
   - {fileID: 17}
@@ -268,8 +268,8 @@ MonoBehaviour:
     y: 0
     width: 724.80005
     height: 447.2
-  m_MinSize: {x: 202, y: 221}
-  m_MaxSize: {x: 4002, y: 4021}
+  m_MinSize: {x: 200, y: 200}
+  m_MaxSize: {x: 4000, y: 4000}
   m_ActualView: {fileID: 18}
   m_Panes:
   - {fileID: 18}
@@ -285,7 +285,7 @@ MonoBehaviour:
   m_Enabled: 1
   m_EditorHideFlags: 1
   m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
-  m_Name: ProjectBrowser
+  m_Name: ConsoleWindow
   m_EditorClassIdentifier: 
   m_Children: []
   m_Position:
@@ -294,14 +294,14 @@ MonoBehaviour:
     y: 447.2
     width: 724.80005
     height: 571.60004
-  m_MinSize: {x: 232, y: 271}
-  m_MaxSize: {x: 10002, y: 10021}
-  m_ActualView: {fileID: 15}
+  m_MinSize: {x: 102, y: 121}
+  m_MaxSize: {x: 4002, y: 4021}
+  m_ActualView: {fileID: 13}
   m_Panes:
   - {fileID: 15}
   - {fileID: 13}
-  m_Selected: 0
-  m_LastSelected: 1
+  m_Selected: 1
+  m_LastSelected: 0
 --- !u!114 &13
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -428,7 +428,7 @@ MonoBehaviour:
     m_SkipHidden: 0
     m_SearchArea: 1
     m_Folders:
-    - Assets/ToneTuneToolkit
+    - Assets/ToneTuneToolkit/Modules/Other/QR/Scripts
     m_Globs: []
     m_OriginalText: 
     m_ImportLogFlags: 0
@@ -436,16 +436,16 @@ MonoBehaviour:
   m_ViewMode: 1
   m_StartGridSize: 16
   m_LastFolders:
-  - Assets/ToneTuneToolkit
+  - Assets/ToneTuneToolkit/Modules/Other/QR/Scripts
   m_LastFoldersGridSize: 16
   m_LastProjectPath: D:\Workflow\Project\Unity\ToneTuneToolkit\ToneTuneToolkit
   m_LockTracker:
     m_IsLocked: 0
   m_FolderTreeState:
     scrollPos: {x: 0, y: 0}
-    m_SelectedIDs: 3e5b0000
-    m_LastClickedID: 23358
-    m_ExpandedIDs: 00000000345b00003c5b0000
+    m_SelectedIDs: cc5b0000
+    m_LastClickedID: 23500
+    m_ExpandedIDs: 00000000b85a00003a5b00003c5b0000505b00005a5b0000765b0000c65b0000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -473,7 +473,7 @@ MonoBehaviour:
     scrollPos: {x: 0, y: 0}
     m_SelectedIDs: 
     m_LastClickedID: 0
-    m_ExpandedIDs: 00000000345b0000365b0000385b00003a5b00003c5b00003e5b0000405b0000
+    m_ExpandedIDs: 000000003a5b00003c5b0000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -504,18 +504,18 @@ MonoBehaviour:
     m_ExpandedInstanceIDs: c6230000825300006a520000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
-      m_Name: PrinterFileProcessor
-      m_OriginalName: PrinterFileProcessor
+      m_Name: 
+      m_OriginalName: 
       m_EditFieldRect:
         serializedVersion: 2
         x: 0
         y: 0
         width: 0
         height: 0
-      m_UserData: 23226
+      m_UserData: 0
       m_IsWaitingForDelay: 0
       m_IsRenaming: 0
-      m_OriginalEventType: 0
+      m_OriginalEventType: 11
       m_IsRenamingFilename: 1
       m_ClientGUIView: {fileID: 12}
     m_CreateAssetUtility:

+ 2 - 2
readme.md

@@ -22,7 +22,7 @@
 <font size=5><strong>Directory - 文档目录</strong></font><br>
 [INTRODUCTION  介绍](#INTRODUCTION)<br>
 [LOG       &ensp;日志](#LOG)<br>
-[MODULE     &ensp;模组](#MODULE)<br>
+[MODULES     &ensp;模组](#MODULES)<br>
 [SCRIPTS     &ensp;脚本](#SCRIPTS)<br>
 [EXTRA      &ensp;额外内容](#EXTRA)<br>
 [SHADERS     着色器](#SHADERS)<br>
@@ -82,7 +82,7 @@
 
 
 
-## <center><a id="MODULE"></a><font color="#44ff00">*MODULE*</font></center>
+## <center><a id="MODULES"></a><font color="#44ff00">*MODULES*</font></center>
 ### ToneTuneToolkit.IO.Printer/
 * 打印机模组
 

Some files were not shown because too many files changed in this diff