瀏覽代碼

添加音效

DESKTOP-FB72PO8\Administrator 3 天之前
父節點
當前提交
4ebabad905

+ 6 - 6
Assets/Art/HeroTimeLine/gf_1202_timeline.playable

@@ -392,16 +392,16 @@ MonoBehaviour:
   LocationType: 0
   targetSpecialDotName: 
   randomGroup: 0
-  isUseRandom: 0
+  isUseRandom: 1
   xoff:
-    x: 0
-    y: 0
+    x: -1
+    y: 1
   yoff:
     x: 0
-    y: 0
+    y: 1
   zoff:
     x: 0
-    y: 0
+    y: 0.5
   hitPointGroupName: 
   isGround: 0
   isFollowTarget: 0
@@ -410,7 +410,7 @@ MonoBehaviour:
   isAttSpeed: 0
   isLoop: 0
   loopAlone: 0
-  isActivityCustomTargetPos: 1
+  isActivityCustomTargetPos: 0
   CustomTargetPosIndex: 0
   intervalTime: 0
   isRoat: 0

+ 1 - 1
Assets/Art/VFX/FXPrefabs/fx_gf_bingqiu.prefab

@@ -19877,7 +19877,7 @@ MonoBehaviour:
   m_EditorClassIdentifier: 
   moveTarget: {fileID: 0}
   delayTime: 0
-  multipleTargetDelayTime: 0
+  multipleTargetDelayTime: 0.1
   hitFxName: fx_gf_bingqiu_hit
   startAudioName: 1202_fashe.wav
   hitAudioName: feijian_hit.wav

二進制
Assets/Res/Aduio/UI/XXX-标版音2.wav


二進制
Assets/Res/Aduio/UI/combat_win.wav


+ 1 - 1
Assets/Res/Aduio/UI/XXX-标版音2.wav.meta → Assets/Res/Aduio/UI/combat_win.wav.meta

@@ -1,5 +1,5 @@
 fileFormatVersion: 2
-guid: D31JsCP+Wy9fCgffL/zDU9kSu7J6O6AHJdrwT08soSOZhp6yCfTCuIiqfhmW
+guid: XSsctXmpU34UsRbxj0NdgQwskPZfZ/rnIKw2HGWY0eKr03YK8Z0Dca4lRRfJ
 AudioImporter:
   externalObjects: {}
   serializedVersion: 7

二進制
Assets/Res/Aduio/UI/ui_button.ogg


+ 23 - 0
Assets/Res/Aduio/UI/ui_button.ogg.meta

@@ -0,0 +1,23 @@
+fileFormatVersion: 2
+guid: DnNN53/4AXI44Qmjin4ZMQlngKMgNMoDw5gQHsoVlL9k4d2xKJJ7wDFitaF3
+AudioImporter:
+  externalObjects: {}
+  serializedVersion: 7
+  defaultSettings:
+    serializedVersion: 2
+    loadType: 0
+    sampleRateSetting: 0
+    sampleRateOverride: 44100
+    compressionFormat: 1
+    quality: 1
+    conversionMode: 0
+    preloadAudioData: 0
+  platformSettingOverrides: {}
+  forceToMono: 0
+  normalize: 1
+  loadInBackground: 0
+  ambisonic: 0
+  3D: 1
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 

文件差異過大導致無法顯示
+ 0 - 0
Assets/Res/TimeLineAssets/1202_timeline_TD.txt


+ 15 - 0
Assets/Scripts/Core/Audio/AudioButton.cs

@@ -0,0 +1,15 @@
+using UnityEngine;
+using UnityEngine.EventSystems;
+
+namespace Core.Audio
+{
+    public class AudioButton : MonoBehaviour, IPointerUpHandler
+    {
+        public string audioName="ui_button";
+
+        public void OnPointerUp(PointerEventData eventData)
+        {
+            AudioManager.Instance.Play(audioName, false);
+        }
+    }
+}

+ 3 - 0
Assets/Scripts/Core/Audio/AudioButton.cs.meta

@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: ee153b56bb1344658ab006fd073af3d8
+timeCreated: 1757409848

+ 15 - 8
Assets/Scripts/Core/Audio/AudioManager.cs

@@ -1,9 +1,11 @@
+using System;
 using System.Collections.Generic;
 using Fort23.Core;
 using Fort23.UTool;
 using UnityEngine;
 using UnityEngine.Audio;
 using Utility;
+using Object = UnityEngine.Object;
 
 namespace Core.Audio
 {
@@ -44,7 +46,6 @@ namespace Core.Audio
             {
                 _root.AddComponent<AudioListener>();
             }
-
             Object.DontDestroyOnLoad(_root);
         }
 
@@ -71,13 +72,13 @@ namespace Core.Audio
         public void SetBgmValue(float value)
         {
             _bgmVolume = value;
-            for (_currPlayAudio.Begin(); _currPlayAudio.Next();)
-            {
-                for (int i = 0; i < _currPlayAudio.Value.Count; i++)
-                {
-                    _currPlayAudio.Value[i].Setvolume();
-                }
-            }
+            // for (_currPlayAudio.Begin(); _currPlayAudio.Next();)
+            // {
+            //     for (int i = 0; i < _currPlayAudio.Value.Count; i++)
+            //     {
+            //         _currPlayAudio.Value[i].Setvolume();
+            //     }
+            // }
 
             _currBgm?.Setvolume();
         }
@@ -269,6 +270,12 @@ namespace Core.Audio
                 return null;
             }
 
+            if (audionName.IndexOf(".", StringComparison.Ordinal) < 0)
+            {
+                audionName += ".wav";
+            }
+              
+
             using (await CoroutineLockComponent.Instance.Wait(audionName))
             {
                 if (_currPlayAudio.TryGetValue(audionName, out List<AudioSourcePool> asp))

+ 2 - 1
Assets/Scripts/Core/Audio/AudioMono.cs

@@ -10,9 +10,10 @@ namespace Core.Audio
 
         public bool isLoop;
 
-        private void Awake()
+        private void OnEnable()
         {
             AudioManager.Instance.Play(audioName, isLoop);
         }
+        
     }
 }

+ 11 - 2
Assets/Scripts/Core/UI/Core/UIManager.cs

@@ -429,7 +429,7 @@ namespace Fort23.Mono
                             NoFocusTopUIPanels.Add(uiPanel);
                         uiPanel.isActiveAnima = isActiveAnima;
                         await uiPanel.Open();
-                        AudioManager.Instance.PlayAudio("openui.wav");
+                        // AudioManager.Instance.PlayAudio("openui.wav");
                         // if (currOpenPanel.add)
                         // {
                         //     currOpenPanel = uiPanel;
@@ -607,7 +607,7 @@ namespace Fort23.Mono
                             NoFocusTopUIPanels.Add(uiPanel);
                         uiPanel.isActiveAnima = isActiveAnima;
                         await uiPanel.Open();
-                        AudioManager.Instance.PlayAudio("openui.wav");
+                        // AudioManager.Instance.PlayAudio("openui.wav");
                         // if (currOpenPanel.add)
                         // {
                         //     currOpenPanel = uiPanel;
@@ -727,6 +727,15 @@ namespace Fort23.Mono
                 // URPTool.Instance.IsNotRenderMainCamera = false;
                 return;
             }
+
+            if (isFull)
+            {
+                AudioManager.Instance.SetBgmValue(0.5f);
+            }
+            else
+            {
+                AudioManager.Instance.SetBgmValue(1f);
+            }
             // URPTool.Instance.IsNotRenderMainCamera = isFull;
         }
 

+ 3 - 2
Assets/Scripts/GameLogic/Combat/Skill/S1202.cs

@@ -41,8 +41,9 @@ namespace GameLogic.Combat.Skill
             BetterList<ILifetCycleHitPoint> currTarget = new BetterList<ILifetCycleHitPoint>();
             currTarget.Add(combatHeroHitPoint);
             Vector3 p = CombatHeroEntity.dotPos;
-            ActivationTimeLineData("1202_fashe", currTarget: currTarget, customizePos: new Vector3[] { p });
-            CombatTimerManager.Instance.AddTimer(0.2f, FaShe);
+            ActivationTimeLineData("1202_fashe", currTarget: currTarget, customizePos: new Vector3[] { p },indexCount: currCount/2);
+            FaShe();
+            // CombatTimerManager.Instance.AddTimer(0.2f, FaShe);
         }
 
         protected override void ProDefaultTimeLineTrigger(string groupName, CombatHeroHitPoint targetEntity,

+ 1 - 1
Assets/Scripts/GameUI/UI/MainHeroPnael/MainHeroPanel.cs

@@ -172,7 +172,7 @@ namespace Fort23.Mono
 
         public async static CTask<MainHeroPanel> OpenPanel()
         {
-            MainHeroPanel mainHeroPanel = await UIManager.Instance.LoadAndOpenPanel<MainHeroPanel>(null);
+            MainHeroPanel mainHeroPanel = await UIManager.Instance.LoadAndOpenPanel<MainHeroPanel>(null,isFullUI: true);
             mainHeroPanel.CustomInit();
             return mainHeroPanel;
         }

+ 1 - 1
Assets/Scripts/GameUI/UI/ShopPanel/ShopPanel.cs

@@ -195,7 +195,7 @@ namespace Fort23.Mono
 
         public static async CTask<ShopPanel> OpenPanel(bool isPauseCombat = false)
         {
-            ShopPanel shopPanel = await UIManager.Instance.LoadAndOpenPanel<ShopPanel>(null, uiData: new object[] { isPauseCombat });
+            ShopPanel shopPanel = await UIManager.Instance.LoadAndOpenPanel<ShopPanel>(null, uiData: new object[] { isPauseCombat },isFullUI:true);
 
 
             return shopPanel;

文件差異過大導致無法顯示
+ 0 - 0
Assets/StreamingAssets/assetConfig.txt


+ 80 - 80
UserSettings/Layouts/default-2022.dwlt

@@ -19,7 +19,7 @@ MonoBehaviour:
     width: 2560
     height: 1349
   m_ShowMode: 4
-  m_Title: Project
+  m_Title: Inspector
   m_RootView: {fileID: 7}
   m_MinSize: {x: 875, y: 371}
   m_MaxSize: {x: 10000, y: 10000}
@@ -41,7 +41,7 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 461
+    width: 442
     height: 1299
   m_MinSize: {x: 232, y: 271}
   m_MaxSize: {x: 10002, y: 10021}
@@ -67,14 +67,14 @@ MonoBehaviour:
   - {fileID: 15}
   m_Position:
     serializedVersion: 2
-    x: 1608
+    x: 1806
     y: 0
-    width: 952
+    width: 754
     height: 1299
   m_MinSize: {x: 200, y: 50}
   m_MaxSize: {x: 16192, y: 8096}
   vertical: 0
-  controlID: 336
+  controlID: 349
   draggingID: 0
 --- !u!114 &4
 MonoBehaviour:
@@ -92,11 +92,11 @@ MonoBehaviour:
   m_Position:
     serializedVersion: 2
     x: 0
-    y: 1120
-    width: 917
-    height: 179
-  m_MinSize: {x: 100, y: 100}
-  m_MaxSize: {x: 4000, y: 4000}
+    y: 1145
+    width: 720
+    height: 154
+  m_MinSize: {x: 101, y: 121}
+  m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 18}
   m_Panes:
   - {fileID: 18}
@@ -121,7 +121,7 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 917
+    width: 720
     height: 1299
   m_MinSize: {x: 100, y: 100}
   m_MaxSize: {x: 8096, y: 16192}
@@ -145,10 +145,10 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 772
-    width: 484
+    width: 669
     height: 527
-  m_MinSize: {x: 100, y: 100}
-  m_MaxSize: {x: 4000, y: 4000}
+  m_MinSize: {x: 102, y: 121}
+  m_MaxSize: {x: 4002, y: 4021}
   m_ActualView: {fileID: 23}
   m_Panes:
   - {fileID: 20}
@@ -252,7 +252,7 @@ MonoBehaviour:
   m_MinSize: {x: 500, y: 100}
   m_MaxSize: {x: 40480, y: 16192}
   vertical: 0
-  controlID: 335
+  controlID: 348
   draggingID: 0
 --- !u!114 &11
 MonoBehaviour:
@@ -271,8 +271,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 917
-    height: 1120
+    width: 720
+    height: 1145
   m_MinSize: {x: 201, y: 221}
   m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 21}
@@ -297,9 +297,9 @@ MonoBehaviour:
   - {fileID: 6}
   m_Position:
     serializedVersion: 2
-    x: 917
+    x: 720
     y: 0
-    width: 484
+    width: 669
     height: 1299
   m_MinSize: {x: 100, y: 100}
   m_MaxSize: {x: 8096, y: 16192}
@@ -323,10 +323,10 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 484
+    width: 669
     height: 772
-  m_MinSize: {x: 200, y: 200}
-  m_MaxSize: {x: 4000, y: 4000}
+  m_MinSize: {x: 202, y: 221}
+  m_MaxSize: {x: 4002, y: 4021}
   m_ActualView: {fileID: 22}
   m_Panes:
   - {fileID: 22}
@@ -349,9 +349,9 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 1401
+    x: 1389
     y: 0
-    width: 207
+    width: 417
     height: 1299
   m_MinSize: {x: 202, y: 221}
   m_MaxSize: {x: 4002, y: 4021}
@@ -375,12 +375,12 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 461
+    x: 442
     y: 0
-    width: 491
+    width: 312
     height: 1299
-  m_MinSize: {x: 275, y: 50}
-  m_MaxSize: {x: 4000, y: 4000}
+  m_MinSize: {x: 276, y: 71}
+  m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 26}
   m_Panes:
   - {fileID: 26}
@@ -1989,9 +1989,9 @@ MonoBehaviour:
   m_Pos:
     serializedVersion: 2
     x: 0
-    y: 1193
-    width: 916
-    height: 158
+    y: 1218
+    width: 719
+    height: 133
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2056,10 +2056,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 920
-    y: 844
-    width: 723
-    height: 499
+    x: 654
+    y: 845
+    width: 745
+    height: 506
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2162,8 +2162,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 73
-    width: 916
-    height: 1099
+    width: 719
+    height: 1124
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2216,23 +2216,23 @@ MonoBehaviour:
       serializedVersion: 2
       x: 0
       y: 21
-      width: 916
-      height: 1078
-    m_Scale: {x: 0.6637931, y: 0.6637931}
-    m_Translation: {x: 458, y: 539}
+      width: 719
+      height: 1103
+    m_Scale: {x: 0.67918724, y: 0.6791872}
+    m_Translation: {x: 359.5, y: 551.5}
     m_MarginLeft: 0
     m_MarginRight: 0
     m_MarginTop: 0
     m_MarginBottom: 0
     m_LastShownAreaInsideMargins:
       serializedVersion: 2
-      x: -689.97406
+      x: -529.30914
       y: -812
-      width: 1379.9481
+      width: 1058.6183
       height: 1624
     m_MinimalGUI: 1
-  m_defaultScale: 0.6637931
-  m_LastWindowPixelSize: {x: 916, y: 1099}
+  m_defaultScale: 0.6791872
+  m_LastWindowPixelSize: {x: 719, y: 1124}
   m_ClearInEditMode: 1
   m_NoCameraWarning: 1
   m_LowResolutionForAspectRatios: 01000001000000000000
@@ -2258,9 +2258,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 917
+    x: 720
     y: 73
-    width: 482
+    width: 667
     height: 751
   m_SerializedDataModeController:
     m_DataMode: 0
@@ -2354,9 +2354,9 @@ MonoBehaviour:
       floating: 0
       collapsed: 0
       displayed: 1
-      snapOffset: {x: 67.5, y: -191}
+      snapOffset: {x: -200.5, y: -191}
       snapOffsetDelta: {x: 0, y: 0}
-      snapCorner: 2
+      snapCorner: 3
       id: Orientation
       index: 0
       layout: 4
@@ -2627,7 +2627,7 @@ MonoBehaviour:
       floating: 0
       collapsed: 0
       displayed: 1
-      snapOffset: {x: 477, y: 282}
+      snapOffset: {x: 25, y: 282}
       snapOffsetDelta: {x: 0, y: 0}
       snapCorner: 0
       id: UnityEditor.SceneViewCameraOverlay
@@ -2641,14 +2641,14 @@ MonoBehaviour:
   m_OverrideSceneCullingMask: 6917529027641081856
   m_SceneIsLit: 1
   m_SceneLighting: 1
-  m_2DMode: 0
+  m_2DMode: 1
   m_isRotationLocked: 0
   m_PlayAudio: 0
   m_AudioPlay: 0
   m_Position:
-    m_Target: {x: -0.91, y: 0.48, z: 0.24}
+    m_Target: {x: -0.31170115, y: -2.8820856, z: -0.025733728}
     speed: 2
-    m_Value: {x: -0.91, y: 0.48, z: 0.24}
+    m_Value: {x: -0.31170115, y: -2.8820856, z: -0.025733728}
   m_RenderMode: 0
   m_CameraMode:
     drawMode: 0
@@ -2676,17 +2676,17 @@ MonoBehaviour:
       m_Size: {x: 0, y: 0}
     yGrid:
       m_Fade:
-        m_Target: 1
+        m_Target: 0
         speed: 2
-        m_Value: 1
+        m_Value: 0
       m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
       m_Pivot: {x: 0, y: 0, z: 0}
       m_Size: {x: 1, y: 1}
     zGrid:
       m_Fade:
-        m_Target: 0
+        m_Target: 1
         speed: 2
-        m_Value: 0
+        m_Value: 1
       m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
       m_Pivot: {x: 0, y: 0, z: 0}
       m_Size: {x: 1, y: 1}
@@ -2694,17 +2694,17 @@ MonoBehaviour:
     m_GridAxis: 1
     m_gridOpacity: 0.5
   m_Rotation:
-    m_Target: {x: 0.10979711, y: 0.75243354, z: -0.13045488, w: 0.6365615}
+    m_Target: {x: 0, y: 0, z: 0, w: 1}
     speed: 2
-    m_Value: {x: 0.10977293, y: 0.75226784, z: -0.13042615, w: 0.6364213}
+    m_Value: {x: 0, y: 0, z: 0, w: 1}
   m_Size:
-    m_Target: 3.9495356
+    m_Target: 1.7264233
     speed: 2
-    m_Value: 3.9495356
+    m_Value: 1.7264233
   m_Ortho:
-    m_Target: 0
+    m_Target: 1
     speed: 2
-    m_Value: 0
+    m_Value: 1
   m_CameraSettings:
     m_Speed: 1.0646999
     m_SpeedNormalized: 0.53
@@ -2720,7 +2720,7 @@ MonoBehaviour:
     m_OcclusionCulling: 0
     m_EnableGDRP: 1
     m_BackfaceCulling: 0
-  m_LastSceneViewRotation: {x: 0.32091138, y: 0.10479416, z: -0.036516406, w: 0.9408017}
+  m_LastSceneViewRotation: {x: 0.049205672, y: 0.93656915, z: -0.14772913, w: 0.31469652}
   m_LastSceneViewOrtho: 0
   m_ReplacementShader: {fileID: 0}
   m_ReplacementString: 
@@ -2747,9 +2747,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 917
+    x: 720
     y: 845
-    width: 482
+    width: 667
     height: 506
   m_SerializedDataModeController:
     m_DataMode: 0
@@ -2790,9 +2790,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1401
+    x: 1389
     y: 73
-    width: 205
+    width: 415
     height: 1278
   m_SerializedDataModeController:
     m_DataMode: 0
@@ -2807,9 +2807,9 @@ MonoBehaviour:
   m_SceneHierarchy:
     m_TreeViewState:
       scrollPos: {x: 0, y: 0}
-      m_SelectedIDs: be8d0600
+      m_SelectedIDs: 
       m_LastClickedID: 0
-      m_ExpandedIDs: 96bc8aff9cbc8aff7ebd8affe0bd8afff4db98ff02dc98ff58efffff
+      m_ExpandedIDs: dcf239ff12f339ff1af339ff2af339ffd6f439ff049742ff289742ff2e9742ffa89742fffe9742ff029842ff089842ff2c9842ff449842ff489842ff4c9842ff509842ff5a9842ff92b466ffa0b466ff24647aff2a647aff42519eff56519eff98519effd613a7ffdc13a7ff52c8edff56c8edff5ac8edff5ec8edff68c8edffe8d5edff3ed9edff8a7bf6ff907bf6ff9a7cf6ffb27cf6ffb67cf6ffba7cf6ffc87cf6ff78faffff
       m_RenameOverlay:
         m_UserAcceptedRename: 0
         m_Name: 
@@ -2853,9 +2853,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1608
+    x: 1806
     y: 73
-    width: 459
+    width: 440
     height: 1278
   m_SerializedDataModeController:
     m_DataMode: 0
@@ -2892,10 +2892,10 @@ MonoBehaviour:
   m_LockTracker:
     m_IsLocked: 0
   m_FolderTreeState:
-    scrollPos: {x: 0, y: 758}
-    m_SelectedIDs: a4630100
-    m_LastClickedID: 91044
-    m_ExpandedIDs: 00000000626001006460010066600100686001006a6001006c6001006e60010070600100726001007460010076600100786001007a6001007c6001007e60010080600100826001008460010086600100886001008a6001008c6001008e60010090600100926001009460010096600100986001009a6001009c6001009e600100a0600100a2600100a460010000ca9a3bffffff7f
+    scrollPos: {x: 0, y: 300}
+    m_SelectedIDs: 264d0100
+    m_LastClickedID: 85286
+    m_ExpandedIDs: 00000000e4490100e6490100e8490100ea490100ec490100ee490100f0490100f2490100f4490100f6490100f8490100fa490100fc490100fe490100004a0100024a0100044a0100064a0100084a01000a4a01000c4a01000e4a0100104a0100124a0100144a0100164a0100184a01001a4a01001c4a01001e4a0100204a0100224a0100244a0100264a010000ca9a3bffffff7f
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -2923,7 +2923,7 @@ MonoBehaviour:
     scrollPos: {x: 0, y: 0}
     m_SelectedIDs: 
     m_LastClickedID: 0
-    m_ExpandedIDs: 00000000626001006460010066600100686001006a6001006c6001006e60010070600100726001007460010076600100786001007a6001007c6001007e60010080600100826001008460010086600100886001008a6001008c6001008e60010090600100926001009460010096600100986001009a6001009c6001009e600100a0600100a2600100a4600100
+    m_ExpandedIDs: 00000000e4490100e6490100e8490100ea490100ec490100ee490100f0490100f2490100f4490100f6490100f8490100fa490100fc490100fe490100004a0100024a0100044a0100064a0100084a01000a4a01000c4a01000e4a0100104a0100124a0100144a0100164a0100184a01001a4a01001c4a01001e4a0100204a0100224a0100244a0100264a0100
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -2999,9 +2999,9 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 2069
+    x: 2248
     y: 73
-    width: 490
+    width: 311
     height: 1278
   m_SerializedDataModeController:
     m_DataMode: 0
@@ -3016,7 +3016,7 @@ MonoBehaviour:
   m_ObjectsLockedBeforeSerialization: []
   m_InstanceIDsLockedBeforeSerialization: 
   m_PreviewResizer:
-    m_CachedPref: 475
+    m_CachedPref: -475
     m_ControlHash: -371814159
     m_PrefName: Preview_InspectorPreview
   m_LastInspectedObjectInstanceID: -1

部分文件因文件數量過多而無法顯示