Переглянути джерело

1.添加一个低分辨设置测试

slambb 2 роки тому
батько
коміт
4d46ca23e6

+ 3 - 0
Assets/InfraredCamera/Scripts/MainManager.cs

@@ -27,5 +27,8 @@ public class MainManager : MonoBehaviour
         DontDestroyOnLoad(infraredManager);
         infraredManager.name = "WebCameraView";
 
+        //³õʼ»¯Ò»ÏÂÔOÖÃ
+        infraredManager.transform.Find("SettingPanel").GetComponent<SettingPanel>().onSettingPanel_Init();
+
     }
 }

+ 119 - 0
Assets/InfraredCamera/Scripts/SettingPanel.cs

@@ -0,0 +1,119 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEngine.UI;
+using Serenegiant.UVC;
+
+public class SettingPanel : MonoBehaviour
+{
+
+    public Dropdown dropdown;
+
+    public UVCManager uVCManager;
+    public UVCDrawer uVCDrawer;
+
+    int selectIndex = 0;
+    //void Awake()
+    //{
+       
+    //}
+    public void onSettingPanel_Init() {
+        int tempIndex = PlayerPrefs.GetInt("resolutionSelectIndex", 0);
+        selectIndex = tempIndex;
+        Debug.Log("selectIndex:" + tempIndex);
+        selectvalue(selectIndex);
+    }
+    void Start()
+    {
+        //宽屏 设置几个宽屏分辨率
+        //List<string> temp = new List<string> { "1280x720", "1024x600", "800x480", "400x240" };
+        //dropdown.AddOptions(temp);
+        dropdown.options.Add(new Dropdown.OptionData("1280x720")); //WXGA
+        dropdown.options.Add(new Dropdown.OptionData("640x480")); //VGA
+        dropdown.options.Add(new Dropdown.OptionData("320x240")); //QVGA
+        dropdown.value = selectIndex;
+        //Debug.Log("dropdown.value:" + dropdown.value);
+        dropdown.onValueChanged.AddListener(delegate
+        {
+            selectvalue(dropdown.value);
+        });
+    }
+    private void selectvalue(int value)
+    {
+      
+        switch (value)
+        {
+            case 0:
+                setSize(1280, 720);
+                break;
+            case 1:
+                setSize(640, 480);
+                break;
+            case 2:
+                setSize(320, 240);
+                break;
+            default:
+                setSize(1280, 720);
+                break;
+        }
+        selectIndex = value;
+
+        //Debug.Log(selectIndex);
+    }
+
+    void setSize(int width,int height) {
+        uVCManager.DefaultWidth = width;
+        uVCManager.DefaultHeight = height;
+
+        uVCDrawer.DefaultWidth = width;
+        uVCDrawer.DefaultHeight = height;
+
+    }
+
+    public void openSettingPanel() {
+        gameObject.SetActive(true);
+    }
+    public void backEvent() {
+        gameObject.SetActive(false);
+    }
+
+    public void restartEvent() {
+        PlayerPrefs.SetInt("resolutionSelectIndex", selectIndex);
+        PlayerPrefs.Save();
+        Debug.Log("restartEvent:"+selectIndex);
+        if (!Application.isEditor) {
+            StartCoroutine(RestartOrKillApp());
+        };
+    }
+
+    IEnumerator RestartOrKillApp()
+    {
+        yield return new WaitForSeconds(0.3f);
+
+        if (Application.platform == RuntimePlatform.Android)
+        {
+            using (var unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer"))
+            {
+                const int kIntent_FLAG_ACTIVITY_CLEAR_TASK = 0x00008000;
+                const int kIntent_FLAG_ACTIVITY_NEW_TASK = 0x10000000;
+
+                var currentActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
+                var pm = currentActivity.Call<AndroidJavaObject>("getPackageManager");
+                var intent = pm.Call<AndroidJavaObject>("getLaunchIntentForPackage", Application.identifier);
+
+                intent.Call<AndroidJavaObject>("setFlags", kIntent_FLAG_ACTIVITY_NEW_TASK | kIntent_FLAG_ACTIVITY_CLEAR_TASK);
+                currentActivity.Call("startActivity", intent);
+                currentActivity.Call("finish");
+                var process = new AndroidJavaClass("android.os.Process");
+                int pid = process.CallStatic<int>("myPid");
+                process.CallStatic("killProcess", pid);
+            }
+
+        }
+        else
+        {
+            Application.Quit();
+        }
+
+    }
+}

+ 11 - 0
Assets/InfraredCamera/Scripts/SettingPanel.cs.meta

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

+ 1 - 0
Assets/InfraredCamera/Scripts/UIManagerSingle.cs

@@ -95,6 +95,7 @@ namespace InfraredManager
             if (ConnetDevicesSingle.ins)
                 ConnetDevicesSingle.ins.OnLogAction += SetLogText;
             Debug.Log("SetLogText£¡");
+
         }
 
         // Start is called before the first frame update

Різницю між файлами не показано, бо вона завелика
+ 1893 - 102
Assets/Resources/WebCameraView.prefab


+ 2 - 2
Assets/WebCamera/Script/ZIM/ScreenLocate.cs

@@ -455,11 +455,11 @@ public class ScreenLocate : MonoBehaviour
                 }
 
             }
-            var statistics = $"{m_History.Count} Ö¡Ñù±¾:\n average: {m_AverageTime * 1000.0f:F2}ms\n median: {m_MedianTime * 1000.0f:F2}ms\n min: {m_MinTime * 1000.0f:F2}ms\n max: {m_MaxTime * 1000.0f:F2}ms\n";
+            var statistics = $"{m_History.Count} Ö¡Ñù±¾:\naverage: {m_AverageTime * 1000.0f:F2}ms\nmedian: {m_MedianTime * 1000.0f:F2}ms\nmin: {m_MinTime * 1000.0f:F2}ms\nmax: {m_MaxTime * 1000.0f:F2}ms\n";
 
             //Method: {m_Method} {UnityEngine.SceneManagement.SceneManager.GetActiveScene().name} |
             if (m_UITime != null)
-                m_UITime.text = $"camera size: {mUVCCameraInfo.CurrentWidth}x{mUVCCameraInfo.CurrentHeight} \n Last Frame: {dt * 1000.0f:F2}ms \n{statistics}";
+                m_UITime.text = $"Cam: {mUVCCameraInfo.CurrentWidth}x{mUVCCameraInfo.CurrentHeight}{(mUVCTexture2D? ",T2D:" : "")}{(mUVCTexture2D? mUVCTexture2D.width+ "x" : "")}{(mUVCTexture2D ? mUVCTexture2D.height:"")} \nLast Frame: {dt * 1000.0f:F2}ms \n{statistics}";
         
         }
         UpdateInputs();

+ 2 - 2
Assets/WebCamera/zimWebCamera.unity

@@ -3587,8 +3587,8 @@ MonoBehaviour:
   m_Name: 
   m_EditorClassIdentifier: 
   cameraIndex: 0
-  width: 1280
-  height: 720
+  width: 640
+  height: 480
   fps: 60
   rawImage: {fileID: 2101632897}
   logText: {fileID: 493188448}

+ 2 - 2
ProjectSettings/ProjectSettings.asset

@@ -145,7 +145,7 @@ PlayerSettings:
     16:10: 1
     16:9: 1
     Others: 1
-  bundleVersion: 1.1.0
+  bundleVersion: 1.1.1
   preloadedAssets: []
   metroInputSource: 0
   wsaTransparentSwapchain: 0
@@ -174,7 +174,7 @@ PlayerSettings:
     iPhone: 0
     tvOS: 0
   overrideDefaultApplicationIdentifier: 1
-  AndroidBundleVersionCode: 10
+  AndroidBundleVersionCode: 11
   AndroidMinSdkVersion: 29
   AndroidTargetSdkVersion: 0
   AndroidPreferredInstallLocation: 1

+ 4 - 4
UserSettings/EditorUserSettings.asset

@@ -9,16 +9,16 @@ EditorUserSettings:
       value: 5601515f53570a09590a592415745e44424e4b29287072697b7c4c35b4b1313d
       flags: 0
     RecentlyUsedSceneGuid-1:
-      value: 5606030254050a5f0f5a0a76167b5d4414151b7f74782260287f4d61bbe3623e
+      value: 56020753060d595e5b085a7544735a44454f4e7e2f7172667f2a1f6ae6b5656d
       flags: 0
     RecentlyUsedSceneGuid-2:
-      value: 56020753060d595e5b085a7544735a44454f4e7e2f7172667f2a1f6ae6b5656d
+      value: 0253070403035c0c5b5a5874477b0e44124f1a72782e76612f281931b6e1606d
       flags: 0
     RecentlyUsedSceneGuid-3:
-      value: 0253070403035c0c5b5a5874477b0e44124f1a72782e76612f281931b6e1606d
+      value: 5404025700575f580959547215765a444e4f4f2f7f7871697c2a4462b3e16d3a
       flags: 0
     RecentlyUsedSceneGuid-4:
-      value: 5404025700575f580959547215765a444e4f4f2f7f7871697c2a4462b3e16d3a
+      value: 5606030254050a5f0f5a0a76167b5d4414151b7f74782260287f4d61bbe3623e
       flags: 0
     vcSharedLogLevel:
       value: 0d5e400f0650

+ 118 - 66
UserSettings/Layouts/default-2021.dwlt

@@ -14,10 +14,10 @@ MonoBehaviour:
   m_EditorClassIdentifier: 
   m_PixelRect:
     serializedVersion: 2
-    x: 897
-    y: 459
+    x: 2551
+    y: 585
     width: 1000
-    height: 461
+    height: 455
   m_ShowMode: 0
   m_Title: Console
   m_RootView: {fileID: 4}
@@ -38,7 +38,7 @@ MonoBehaviour:
   m_EditorClassIdentifier: 
   m_PixelRect:
     serializedVersion: 2
-    x: 1920
+    x: 0
     y: 43
     width: 1920
     height: 997
@@ -66,12 +66,12 @@ MonoBehaviour:
     x: 0
     y: 0
     width: 1000
-    height: 461
+    height: 455
   m_MinSize: {x: 100, y: 121}
   m_MaxSize: {x: 4000, y: 4021}
-  m_ActualView: {fileID: 15}
+  m_ActualView: {fileID: 16}
   m_Panes:
-  - {fileID: 15}
+  - {fileID: 16}
   m_Selected: 0
   m_LastSelected: 0
 --- !u!114 &4
@@ -93,11 +93,11 @@ MonoBehaviour:
     x: 0
     y: 0
     width: 1000
-    height: 461
+    height: 455
   m_MinSize: {x: 100, y: 121}
   m_MaxSize: {x: 4000, y: 4021}
   vertical: 0
-  controlID: 49
+  controlID: 15
 --- !u!114 &5
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -174,7 +174,7 @@ MonoBehaviour:
   m_MinSize: {x: 400, y: 200}
   m_MaxSize: {x: 32384, y: 16192}
   vertical: 0
-  controlID: 144
+  controlID: 147
 --- !u!114 &8
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -215,12 +215,12 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 907
+    width: 746
     height: 947
   m_MinSize: {x: 100, y: 200}
   m_MaxSize: {x: 8096, y: 16192}
   vertical: 1
-  controlID: 16
+  controlID: 148
 --- !u!114 &10
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -236,15 +236,15 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 907
+    x: 746
     y: 0
-    width: 307
+    width: 273
     height: 947
   m_MinSize: {x: 202, y: 221}
   m_MaxSize: {x: 4002, y: 4021}
-  m_ActualView: {fileID: 16}
+  m_ActualView: {fileID: 17}
   m_Panes:
-  - {fileID: 16}
+  - {fileID: 17}
   m_Selected: 0
   m_LastSelected: 0
 --- !u!114 &11
@@ -262,15 +262,15 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 1214
+    x: 1019
     y: 0
-    width: 275
+    width: 280
     height: 947
   m_MinSize: {x: 232, y: 271}
   m_MaxSize: {x: 10002, y: 10021}
-  m_ActualView: {fileID: 18}
+  m_ActualView: {fileID: 19}
   m_Panes:
-  - {fileID: 18}
+  - {fileID: 19}
   m_Selected: 0
   m_LastSelected: 0
 --- !u!114 &12
@@ -283,21 +283,22 @@ MonoBehaviour:
   m_Enabled: 1
   m_EditorHideFlags: 1
   m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
-  m_Name: 
+  m_Name: BuildPlayerWindow
   m_EditorClassIdentifier: 
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 1489
+    x: 1299
     y: 0
-    width: 431
+    width: 621
     height: 947
-  m_MinSize: {x: 275, y: 50}
+  m_MinSize: {x: 640, y: 580}
   m_MaxSize: {x: 4000, y: 4000}
-  m_ActualView: {fileID: 17}
+  m_ActualView: {fileID: 15}
   m_Panes:
-  - {fileID: 17}
-  m_Selected: 0
+  - {fileID: 18}
+  - {fileID: 15}
+  m_Selected: 1
   m_LastSelected: 0
 --- !u!114 &13
 MonoBehaviour:
@@ -316,13 +317,13 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 907
+    width: 746
     height: 486
   m_MinSize: {x: 201, y: 221}
   m_MaxSize: {x: 4001, y: 4021}
-  m_ActualView: {fileID: 20}
+  m_ActualView: {fileID: 21}
   m_Panes:
-  - {fileID: 20}
+  - {fileID: 21}
   m_Selected: 0
   m_LastSelected: 0
 --- !u!114 &14
@@ -342,16 +343,67 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 486
-    width: 907
+    width: 746
     height: 461
   m_MinSize: {x: 201, y: 221}
   m_MaxSize: {x: 4001, y: 4021}
-  m_ActualView: {fileID: 19}
+  m_ActualView: {fileID: 20}
   m_Panes:
-  - {fileID: 19}
+  - {fileID: 20}
   m_Selected: 0
   m_LastSelected: 0
 --- !u!114 &15
+MonoBehaviour:
+  m_ObjectHideFlags: 52
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 0}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 12043, guid: 0000000000000000e000000000000000, type: 0}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  m_MinSize: {x: 640, y: 580}
+  m_MaxSize: {x: 4000, y: 4000}
+  m_TitleContent:
+    m_Text: Build Settings
+    m_Image: {fileID: 0}
+    m_Tooltip: 
+  m_Pos:
+    serializedVersion: 2
+    x: 1299
+    y: 73
+    width: 620
+    height: 926
+  m_ViewDataDictionary: {fileID: 0}
+  m_OverlayCanvas:
+    m_LastAppliedPresetName: Default
+    m_SaveData: []
+    m_OverlaysVisible: 1
+  m_TreeViewState:
+    scrollPos: {x: 0, y: 0}
+    m_SelectedIDs: 5b310320
+    m_LastClickedID: 537080155
+    m_ExpandedIDs: 
+    m_RenameOverlay:
+      m_UserAcceptedRename: 0
+      m_Name: 
+      m_OriginalName: 
+      m_EditFieldRect:
+        serializedVersion: 2
+        x: 0
+        y: 0
+        width: 0
+        height: 0
+      m_UserData: 0
+      m_IsWaitingForDelay: 0
+      m_IsRenaming: 0
+      m_OriginalEventType: 11
+      m_IsRenamingFilename: 0
+      m_ClientGUIView: {fileID: 0}
+    m_SearchString: 
+--- !u!114 &16
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -371,16 +423,16 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 897
-    y: 459
+    x: 2551
+    y: 585
     width: 1000
-    height: 440
+    height: 434
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:
     m_LastAppliedPresetName: Default
     m_SaveData: []
     m_OverlaysVisible: 1
---- !u!114 &16
+--- !u!114 &17
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -400,9 +452,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 2827
+    x: 746
     y: 73
-    width: 305
+    width: 271
     height: 926
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:
@@ -412,9 +464,9 @@ MonoBehaviour:
   m_SceneHierarchy:
     m_TreeViewState:
       scrollPos: {x: 0, y: 0}
-      m_SelectedIDs: 9a6f0000
+      m_SelectedIDs: ae700000
       m_LastClickedID: 0
-      m_ExpandedIDs: 8af8ffff32f9ffff78f9ffffc4f9ffff32fbffff
+      m_ExpandedIDs: 8654ffff8c55ffffd655ffffd05bffffe05dffffe65dffff3876ffffda7fffff2480ffff8e82ffff7684ffff7a84ffff6685ffffb085ffffb08bffffce8dffffd28dffff4c8fffff968fffff9695ffffb497ffffb897ffff6a9affffb49affffb4a0ffffd2a2ffffd6a2ffff00a5ffff4ca5ffff4cabffff6aadffff6eadffff14d4ffff60d4ffff60daffff7edcffff82dcffff0ce4ffff56e4ffff56eaffff74ecffff78ecffff32fbfffff4ffffff
       m_RenameOverlay:
         m_UserAcceptedRename: 0
         m_Name: 
@@ -438,7 +490,7 @@ MonoBehaviour:
       m_IsLocked: 0
     m_CurrentSortingName: TransformSorting
   m_WindowGUID: 16a068e3f747e2849ac45de1adba3ddb
---- !u!114 &17
+--- !u!114 &18
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -458,9 +510,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 3409
+    x: 1299
     y: 73
-    width: 430
+    width: 620
     height: 926
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:
@@ -473,14 +525,14 @@ MonoBehaviour:
     m_CachedPref: -160
     m_ControlHash: -371814159
     m_PrefName: Preview_InspectorPreview
-  m_LastInspectedObjectInstanceID: -1
+  m_LastInspectedObjectInstanceID: 28840
   m_LastVerticalScrollValue: 0
   m_GlobalObjectId: 
   m_InspectorMode: 0
   m_LockTracker:
     m_IsLocked: 0
   m_PreviewWindow: {fileID: 0}
---- !u!114 &18
+--- !u!114 &19
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -500,9 +552,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 3134
+    x: 1019
     y: 73
-    width: 273
+    width: 278
     height: 926
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:
@@ -522,7 +574,7 @@ MonoBehaviour:
     m_SkipHidden: 0
     m_SearchArea: 1
     m_Folders:
-    - Assets/Plugins
+    - Assets/o0
     m_Globs: []
     m_OriginalText: 
   m_ViewMode: 0
@@ -537,7 +589,7 @@ MonoBehaviour:
     scrollPos: {x: 0, y: 0}
     m_SelectedIDs: e46b0000
     m_LastClickedID: 27620
-    m_ExpandedIDs: 00000000686d00006a6d00006c6d00006e6d0000706d0000726d0000746d0000766d0000786d00007a6d00007c6d00007e6d0000
+    m_ExpandedIDs: 000000006470000066700000687000006a7000006c7000006e70000070700000727000007470000076700000787000007a7000007c7000007e700000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -562,10 +614,10 @@ MonoBehaviour:
       m_Icon: {fileID: 0}
       m_ResourceFile: 
   m_AssetTreeState:
-    scrollPos: {x: 0, y: 256}
+    scrollPos: {x: 0, y: 128}
     m_SelectedIDs: 
     m_LastClickedID: 0
-    m_ExpandedIDs: ffffffff00000000686d00006a6d00006c6d00006e6d0000706d0000726d0000746d0000766d0000786d00007a6d00007c6d00007e6d0000
+    m_ExpandedIDs: ffffffff000000006470000066700000687000006a7000006c7000006e70000070700000727000007470000076700000787000007a7000007c7000007e700000
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -621,7 +673,7 @@ MonoBehaviour:
     m_GridSize: 64
   m_SkipHiddenPackages: 0
   m_DirectoriesAreaWidth: 115
---- !u!114 &19
+--- !u!114 &20
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -641,9 +693,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1920
+    x: 0
     y: 559
-    width: 906
+    width: 745
     height: 440
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:
@@ -656,7 +708,7 @@ MonoBehaviour:
   m_ShowGizmos: 0
   m_TargetDisplay: 0
   m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
-  m_TargetSize: {x: 906, y: 419}
+  m_TargetSize: {x: 745, y: 419}
   m_TextureFilterMode: 0
   m_TextureHideFlags: 61
   m_RenderIMGUI: 1
@@ -671,8 +723,8 @@ MonoBehaviour:
     m_VRangeLocked: 0
     hZoomLockedByDefault: 0
     vZoomLockedByDefault: 0
-    m_HBaseRangeMin: -453
-    m_HBaseRangeMax: 453
+    m_HBaseRangeMin: -372.5
+    m_HBaseRangeMax: 372.5
     m_VBaseRangeMin: -209.5
     m_VBaseRangeMax: 209.5
     m_HAllowExceedBaseRangeMin: 1
@@ -692,29 +744,29 @@ MonoBehaviour:
       serializedVersion: 2
       x: 0
       y: 21
-      width: 906
+      width: 745
       height: 419
     m_Scale: {x: 1, y: 1}
-    m_Translation: {x: 453, y: 209.5}
+    m_Translation: {x: 372.5, y: 209.5}
     m_MarginLeft: 0
     m_MarginRight: 0
     m_MarginTop: 0
     m_MarginBottom: 0
     m_LastShownAreaInsideMargins:
       serializedVersion: 2
-      x: -453
+      x: -372.5
       y: -209.5
-      width: 906
+      width: 745
       height: 419
     m_MinimalGUI: 1
   m_defaultScale: 1
-  m_LastWindowPixelSize: {x: 906, y: 440}
+  m_LastWindowPixelSize: {x: 745, y: 440}
   m_ClearInEditMode: 1
   m_NoCameraWarning: 1
   m_LowResolutionForAspectRatios: 01000000000000000000
   m_XRRenderMode: 0
   m_RenderTexture: {fileID: 0}
---- !u!114 &20
+--- !u!114 &21
 MonoBehaviour:
   m_ObjectHideFlags: 52
   m_CorrespondingSourceObject: {fileID: 0}
@@ -734,9 +786,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1920
+    x: 0
     y: 73
-    width: 906
+    width: 745
     height: 465
   m_ViewDataDictionary: {fileID: 0}
   m_OverlayCanvas:

Деякі файли не було показано, через те що забагато файлів було змінено