DESKTOP-FB72PO8\Administrator 5 dienas atpakaļ
vecāks
revīzija
0c9cf15906

BIN
Assets/Res/Aduio/Skill/fb10001/fb_duiping.wav


+ 1 - 1
Assets/Res/Aduio/Skill/fb10001/fbfeixing.wav.meta → Assets/Res/Aduio/Skill/fb10001/fb_duiping.wav.meta

@@ -1,5 +1,5 @@
 fileFormatVersion: 2
-guid: DXIX5y/8UX4Jw2Ru7P2GNvpb0X5Yri/7hlFB/7wKFmgjCbZG9zTS6KtxwtHK
+guid: CHMfs3v/Wy1JWzgGaQHPfsatC8y2fZKT1XRVWS4m9mEcFjTgxdm62xGlcQ07
 AudioImporter:
   externalObjects: {}
   serializedVersion: 7

BIN
Assets/Res/Aduio/Skill/fb10001/fb_duipingbaozha.wav


+ 23 - 0
Assets/Res/Aduio/Skill/fb10001/fb_duipingbaozha.wav.meta

@@ -0,0 +1,23 @@
+fileFormatVersion: 2
+guid: WnkYsSmqWi8Bh6IIOA47T05qNLQXv+y3TKd3HFiOY6Ltj1iGGu6dgdRPX5kd
+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/Aduio/Skill/fb10001/fbfeixing.wav → Assets/Res/Aduio/Skill/fb10001/fb_feixing.wav


+ 23 - 0
Assets/Res/Aduio/Skill/fb10001/fb_feixing.wav.meta

@@ -0,0 +1,23 @@
+fileFormatVersion: 2
+guid: B30Wt3ikBShTXNpfg3A+NUpIk2gZgwubSCjla6X6Lhhrgq0HehvikWgxAJ2P
+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: 

BIN
Assets/Res/Aduio/Skill/fb10001/fb_xiaopengzhuang.wav


+ 23 - 0
Assets/Res/Aduio/Skill/fb10001/fb_xiaopengzhuang.wav.meta

@@ -0,0 +1,23 @@
+fileFormatVersion: 2
+guid: XnwYty+rBy7O0AqwkVFF+Z68fCTZJpBLbb5vM0l8Zml0X/YPdcrqpfkHYLbz
+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: 

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

@@ -180,14 +180,15 @@ namespace Core.Audio
 
         public void Stop(string audionName)
         {
-            // for (int i = 0; i < _currPlayAudio.Count; i++)
-            // {
-            //     if (_currPlayAudio[i].CurrPlayName.Equals(audionName))
-            //     {
-            //         _currPlayAudio[i].Finish();
-            //         i--;
-            //     }
-            // }
+            if (_currPlayAudio.TryGetValue(audionName, out List<AudioSourcePool> asp))
+            {
+                for (int i = 0; i < asp.Count; i++)
+                {
+                    AudioSourcePool a = asp[i];
+                    a.Finish();
+                    i--;
+                }
+            }
         }
 
         public async void PlayBGM(string bgmName)

+ 14 - 3
Assets/Scripts/GameLogic/Combat/CombatTool/MagicWeaponCollisionInfo.cs

@@ -1,3 +1,4 @@
+using Core.Audio;
 using Core.Triiger;
 using Core.Utility;
 using Fort23.Core;
@@ -32,7 +33,7 @@ namespace GameLogic.Combat.CombatTool
 
         protected ParticleSystemPool ParticleSystemPool;
         private int triigerCount;
-
+        private AudioSourcePool loopDuiPing;
         public void Init(CombatMagicWeaponEntity a, CombatMagicWeaponEntity b, int id)
         {
             this.id = id;
@@ -99,7 +100,7 @@ namespace GameLogic.Combat.CombatTool
             // }
         }
 
-        protected void PongZhuang()
+        protected async void PongZhuang()
         {
             if (State != 1 || _isPengZhuang)
             {
@@ -122,6 +123,7 @@ namespace GameLogic.Combat.CombatTool
                     rollingStateData2);
                 State = 2;
                 _currTime = 0;
+               
                 CombatController.currActiveCombat.GameTimeLineParticleFactory.CreateParticle("fx_fb_duipin_dian",
                     a.dotPos, null, false, null, delegate(ParticleSystemPool particleSystemPool)
                     {
@@ -133,6 +135,7 @@ namespace GameLogic.Combat.CombatTool
                             GObjectPool.Instance.Recycle(ParticleSystemPool);
                         }
                     });
+                loopDuiPing= await  AudioManager.Instance.PlayAudio("fb_duiping.wav", true);
             }
             else
             {
@@ -143,6 +146,7 @@ namespace GameLogic.Combat.CombatTool
                             a.GameObject.transform.rotation;
                     });
                 triigerCount++;
+                AudioManager.Instance.PlayAudio("fb_xiaopengzhuang.wav", false);
                 // a.ReduceHp(40);
                 // _trigger = true;
                 // _triggerTime = 0.5f;
@@ -209,7 +213,7 @@ namespace GameLogic.Combat.CombatTool
                     b.CombatAIBasic.stateControl.CurrStateName.Equals(CombatHeroStateType.idle))
                 {
                     State = 1;
-
+                    AudioManager.Instance.PlayAudio("fb_feixing.wav", false);
                     int odds = Random.Range(0, 100);
                     if (odds < 50)
                     {
@@ -241,6 +245,7 @@ namespace GameLogic.Combat.CombatTool
                 b.GameObject.transform.rotation = Quaternion.LookRotation((b1 - b2).normalized);
                 if (_currTime > 0.48f)
                 {
+                   
                     PongZhuang();
                 }
 
@@ -256,6 +261,12 @@ namespace GameLogic.Combat.CombatTool
                 _currTime += t;
                 if (_currTime > 2)
                 {
+                    if (loopDuiPing != null)
+                    {
+                        loopDuiPing.Finish();
+                        loopDuiPing = null;
+                    }
+                    AudioManager.Instance.PlayAudio("fb_duipingbaozha.wav", false);
                     State = 3;
                     _currTime = 0;
                     CombatCalculateTool.Instance.FaBaoPengZhuang(a, b);

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
Assets/StreamingAssets/assetConfig.txt


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

@@ -14,16 +14,16 @@ MonoBehaviour:
   m_EditorClassIdentifier: 
   m_PixelRect:
     serializedVersion: 2
-    x: 0
-    y: 43
-    width: 2560
-    height: 1349
+    x: 8
+    y: 51
+    width: 2544
+    height: 1333
   m_ShowMode: 4
-  m_Title: Scene
+  m_Title: Timeline
   m_RootView: {fileID: 7}
   m_MinSize: {x: 875, y: 371}
   m_MaxSize: {x: 10000, y: 10000}
-  m_Maximized: 1
+  m_Maximized: 0
 --- !u!114 &2
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -41,8 +41,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 300
-    height: 1299
+    width: 278
+    height: 1283
   m_MinSize: {x: 232, y: 271}
   m_MaxSize: {x: 10002, y: 10021}
   m_ActualView: {fileID: 25}
@@ -67,14 +67,14 @@ MonoBehaviour:
   - {fileID: 15}
   m_Position:
     serializedVersion: 2
-    x: 1985
+    x: 1972
     y: 0
-    width: 575
-    height: 1299
+    width: 572
+    height: 1283
   m_MinSize: {x: 200, y: 50}
   m_MaxSize: {x: 16192, y: 8096}
   vertical: 0
-  controlID: 688
+  controlID: 333
   draggingID: 0
 --- !u!114 &4
 MonoBehaviour:
@@ -92,9 +92,9 @@ MonoBehaviour:
   m_Position:
     serializedVersion: 2
     x: 0
-    y: 1199
-    width: 917
-    height: 100
+    y: 1184
+    width: 912
+    height: 99
   m_MinSize: {x: 101, y: 121}
   m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 18}
@@ -121,12 +121,12 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 917
-    height: 1299
+    width: 912
+    height: 1283
   m_MinSize: {x: 100, y: 100}
   m_MaxSize: {x: 8096, y: 16192}
   vertical: 1
-  controlID: 27
+  controlID: 20
   draggingID: 0
 --- !u!114 &6
 MonoBehaviour:
@@ -144,9 +144,9 @@ MonoBehaviour:
   m_Position:
     serializedVersion: 2
     x: 0
-    y: 662
-    width: 731
-    height: 637
+    y: 763
+    width: 725
+    height: 520
   m_MinSize: {x: 102, y: 121}
   m_MaxSize: {x: 4002, y: 4021}
   m_ActualView: {fileID: 23}
@@ -154,7 +154,7 @@ MonoBehaviour:
   - {fileID: 20}
   - {fileID: 23}
   m_Selected: 1
-  m_LastSelected: 1
+  m_LastSelected: 0
 --- !u!114 &7
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -175,8 +175,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 2560
-    height: 1349
+    width: 2544
+    height: 1333
   m_MinSize: {x: 875, y: 300}
   m_MaxSize: {x: 10000, y: 10000}
   m_UseTopView: 1
@@ -200,7 +200,7 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 2560
+    width: 2544
     height: 30
   m_MinSize: {x: 0, y: 0}
   m_MaxSize: {x: 0, y: 0}
@@ -221,8 +221,8 @@ MonoBehaviour:
   m_Position:
     serializedVersion: 2
     x: 0
-    y: 1329
-    width: 2560
+    y: 1313
+    width: 2544
     height: 20
   m_MinSize: {x: 0, y: 0}
   m_MaxSize: {x: 0, y: 0}
@@ -247,12 +247,12 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 30
-    width: 2560
-    height: 1299
+    width: 2544
+    height: 1283
   m_MinSize: {x: 500, y: 100}
   m_MaxSize: {x: 40480, y: 16192}
   vertical: 0
-  controlID: 91
+  controlID: 89
   draggingID: 0
 --- !u!114 &11
 MonoBehaviour:
@@ -271,8 +271,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 917
-    height: 1199
+    width: 912
+    height: 1184
   m_MinSize: {x: 201, y: 221}
   m_MaxSize: {x: 4001, y: 4021}
   m_ActualView: {fileID: 21}
@@ -297,14 +297,14 @@ MonoBehaviour:
   - {fileID: 6}
   m_Position:
     serializedVersion: 2
-    x: 917
+    x: 912
     y: 0
-    width: 731
-    height: 1299
+    width: 725
+    height: 1283
   m_MinSize: {x: 100, y: 100}
   m_MaxSize: {x: 8096, y: 16192}
   vertical: 1
-  controlID: 92
+  controlID: 90
   draggingID: 0
 --- !u!114 &13
 MonoBehaviour:
@@ -323,8 +323,8 @@ MonoBehaviour:
     serializedVersion: 2
     x: 0
     y: 0
-    width: 731
-    height: 662
+    width: 725
+    height: 763
   m_MinSize: {x: 202, y: 221}
   m_MaxSize: {x: 4002, y: 4021}
   m_ActualView: {fileID: 22}
@@ -349,10 +349,10 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 1648
+    x: 1637
     y: 0
-    width: 337
-    height: 1299
+    width: 335
+    height: 1283
   m_MinSize: {x: 202, y: 221}
   m_MaxSize: {x: 4002, y: 4021}
   m_ActualView: {fileID: 24}
@@ -375,10 +375,10 @@ MonoBehaviour:
   m_Children: []
   m_Position:
     serializedVersion: 2
-    x: 300
+    x: 278
     y: 0
-    width: 275
-    height: 1299
+    width: 294
+    height: 1283
   m_MinSize: {x: 275, y: 50}
   m_MaxSize: {x: 4000, y: 4000}
   m_ActualView: {fileID: 26}
@@ -1988,10 +1988,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 0
-    y: 1272
-    width: 916
-    height: 79
+    x: 8
+    y: 1265
+    width: 911
+    height: 78
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2056,10 +2056,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1031
-    y: 977
-    width: 504
-    height: 374
+    x: 920
+    y: 844
+    width: 723
+    height: 499
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2160,10 +2160,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 0
-    y: 73
-    width: 916
-    height: 1178
+    x: 8
+    y: 81
+    width: 911
+    height: 1163
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2216,23 +2216,23 @@ MonoBehaviour:
       serializedVersion: 2
       x: 0
       y: 21
-      width: 916
-      height: 1157
-    m_Scale: {x: 0.7124384, y: 0.7124384}
-    m_Translation: {x: 458, y: 578.5}
+      width: 911
+      height: 1142
+    m_Scale: {x: 0.70320195, y: 0.70320195}
+    m_Translation: {x: 455.5, y: 571}
     m_MarginLeft: 0
     m_MarginRight: 0
     m_MarginTop: 0
     m_MarginBottom: 0
     m_LastShownAreaInsideMargins:
       serializedVersion: 2
-      x: -642.8626
+      x: -647.75134
       y: -812
-      width: 1285.7252
+      width: 1295.5027
       height: 1624
     m_MinimalGUI: 1
-  m_defaultScale: 0.7124384
-  m_LastWindowPixelSize: {x: 916, y: 1178}
+  m_defaultScale: 0.70320195
+  m_LastWindowPixelSize: {x: 911, y: 1163}
   m_ClearInEditMode: 1
   m_NoCameraWarning: 1
   m_LowResolutionForAspectRatios: 01000001000000000000
@@ -2258,10 +2258,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 917
-    y: 73
-    width: 729
-    height: 641
+    x: 920
+    y: 81
+    width: 723
+    height: 742
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2496,7 +2496,7 @@ MonoBehaviour:
       containerId: Floating
       floating: 1
       collapsed: 0
-      displayed: 1
+      displayed: 0
       snapOffset: {x: 8, y: 21}
       snapOffsetDelta: {x: 0, y: 0}
       snapCorner: 0
@@ -2602,7 +2602,7 @@ MonoBehaviour:
       collapsed: 0
       displayed: 0
       snapOffset: {x: -231.00003, y: -145.00003}
-      snapOffsetDelta: {x: 0, y: 0}
+      snapOffsetDelta: {x: 0, y: 0.000030517578}
       snapCorner: 3
       id: Scene View/TrailRenderer
       index: 10
@@ -2646,9 +2646,9 @@ MonoBehaviour:
   m_PlayAudio: 0
   m_AudioPlay: 0
   m_Position:
-    m_Target: {x: -1.01, y: 2.14, z: 0.49}
+    m_Target: {x: -0.91, y: 0.48, z: 0.24}
     speed: 2
-    m_Value: {x: -1.01, y: 2.14, z: 0.49}
+    m_Value: {x: -0.91, y: 0.48, z: 0.24}
   m_RenderMode: 0
   m_CameraMode:
     drawMode: 0
@@ -2696,11 +2696,11 @@ MonoBehaviour:
   m_Rotation:
     m_Target: {x: 0.10979711, y: 0.75243354, z: -0.13045488, w: 0.6365615}
     speed: 2
-    m_Value: {x: 0.109968446, y: 0.7513123, z: -0.13026135, w: 0.63754904}
+    m_Value: {x: 0.10977293, y: 0.75226784, z: -0.13042615, w: 0.6364213}
   m_Size:
-    m_Target: 10.206699
+    m_Target: 3.9495356
     speed: 2
-    m_Value: 9.767177
+    m_Value: 3.9495356
   m_Ortho:
     m_Target: 0
     speed: 2
@@ -2747,10 +2747,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 917
-    y: 735
-    width: 729
-    height: 616
+    x: 920
+    y: 844
+    width: 723
+    height: 499
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2790,10 +2790,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1648
-    y: 73
-    width: 335
-    height: 1278
+    x: 1645
+    y: 81
+    width: 333
+    height: 1262
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2807,20 +2807,20 @@ MonoBehaviour:
   m_SceneHierarchy:
     m_TreeViewState:
       scrollPos: {x: 0, y: 0}
-      m_SelectedIDs: d62438ff
-      m_LastClickedID: -13097770
-      m_ExpandedIDs: 702538ff8a2538ff9c154aff3cd76dff6ad76dffbaa576ffb41877ffe21877fffc6889ffce6989ffe26989ffcedb9bfffcdb9bffe8a3b6ff16a4b6ffb200c0ffd400c0ff1623dbffb8a8ffff12b6ffff72e3fffff4ffffff
+      m_SelectedIDs: bed50000
+      m_LastClickedID: 0
+      m_ExpandedIDs: c82ffbfe7c8e0dffa2881fffc4881fff108731ff048643ffb47a55fffa7367ff167467ffa6b3b7ffc0b3b7ff6005eeff92edffffc0edffff78fafffff4ffffff
       m_RenameOverlay:
         m_UserAcceptedRename: 0
-        m_Name: New Game Object
-        m_OriginalName: New Game Object
+        m_Name: fb_feicuihulu
+        m_OriginalName: fb_feicuihulu
         m_EditFieldRect:
           serializedVersion: 2
           x: 0
           y: 0
           width: 0
           height: 0
-        m_UserData: -9001630
+        m_UserData: -5916950
         m_IsWaitingForDelay: 0
         m_IsRenaming: 0
         m_OriginalEventType: 0
@@ -2853,10 +2853,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 1985
-    y: 73
-    width: 298
-    height: 1278
+    x: 1980
+    y: 81
+    width: 276
+    height: 1262
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -2878,7 +2878,7 @@ MonoBehaviour:
     m_SkipHidden: 0
     m_SearchArea: 1
     m_Folders:
-    - Assets/Art/VFX/FXPrefabs
+    - Assets/Res/Aduio/Skill/1402
     m_Globs: []
     m_OriginalText: 
     m_ImportLogFlags: 0
@@ -2886,32 +2886,32 @@ MonoBehaviour:
   m_ViewMode: 1
   m_StartGridSize: 16
   m_LastFolders:
-  - Assets/Art/VFX/FXPrefabs
+  - Assets/Res/Aduio/Skill/1402
   m_LastFoldersGridSize: 16
   m_LastProjectPath: D:\unityProject\XiuXianGame
   m_LockTracker:
     m_IsLocked: 0
   m_FolderTreeState:
-    scrollPos: {x: 0, y: 815}
-    m_SelectedIDs: 762c0100
-    m_LastClickedID: 76918
-    m_ExpandedIDs: 00000000fe290100002a0100022a0100042a0100062a0100082a01000a2a01000c2a01000e2a0100102a0100122a0100142a0100162a0100182a01001a2a01001c2a01001e2a0100202a0100222a0100242a0100262a0100282a01002a2a01002c2a01002e2a0100302a0100322a0100342a0100362a0100382a01003a2a01003c2a0100022b0100202b01003239010000ca9a3bffffff7f
+    scrollPos: {x: 0, y: 1099}
+    m_SelectedIDs: bca50100
+    m_LastClickedID: 107964
+    m_ExpandedIDs: 000000001a2d01001c2d01001e2d0100202d0100222d0100242d0100262d0100282d01002a2d01002c2d01002e2d0100302d0100322d0100342d0100362d0100382d01003a2d01003c2d01003e2d0100402d0100422d0100442d0100462d0100482d01004a2d01004c2d01004e2d0100502d0100522d0100542d0100562d0100582d0100302e01004e2e01009a2f0100a6a5010000ca9a3bffffff7f
     m_RenameOverlay:
       m_UserAcceptedRename: 0
-      m_Name: 
-      m_OriginalName: 
+      m_Name: 9101
+      m_OriginalName: 9101
       m_EditFieldRect:
         serializedVersion: 2
         x: 0
         y: 0
         width: 0
         height: 0
-      m_UserData: 0
+      m_UserData: 108012
       m_IsWaitingForDelay: 0
       m_IsRenaming: 0
-      m_OriginalEventType: 11
+      m_OriginalEventType: 0
       m_IsRenamingFilename: 1
-      m_ClientGUIView: {fileID: 6}
+      m_ClientGUIView: {fileID: 2}
     m_SearchString: 
     m_CreateAssetUtility:
       m_EndAction: {fileID: 0}
@@ -2923,7 +2923,7 @@ MonoBehaviour:
     scrollPos: {x: 0, y: 0}
     m_SelectedIDs: 
     m_LastClickedID: 0
-    m_ExpandedIDs: 00000000fe290100002a0100022a0100042a0100062a0100082a01000a2a01000c2a01000e2a0100102a0100122a0100142a0100162a0100182a01001a2a01001c2a01001e2a0100202a0100222a0100242a0100262a0100282a01002a2a01002c2a01002e2a0100302a0100322a0100342a0100362a0100382a01003a2a01003c2a0100
+    m_ExpandedIDs: 000000001a2d01001c2d01001e2d0100202d0100222d0100242d0100262d0100282d01002a2d01002c2d01002e2d0100302d0100322d0100342d0100362d0100382d01003a2d01003c2d01003e2d0100402d0100422d0100442d0100462d0100482d01004a2d01004c2d01004e2d0100502d0100522d0100542d0100562d0100582d0100
     m_RenameOverlay:
       m_UserAcceptedRename: 0
       m_Name: 
@@ -2951,21 +2951,21 @@ MonoBehaviour:
     m_SelectedInstanceIDs: 
     m_LastClickedInstanceID: 0
     m_HadKeyboardFocusLastEvent: 1
-    m_ExpandedInstanceIDs: ccd40000ec17010052190100ae40010036aa0000bcb50000d0a9000020ba0000b402010062eb03000000000046860100ae5a010094b001004e610100a2d1010038890300a6aa0000feaa0000d2530400a4530400aa890100b68f0100c28f0100c88f0100bc8f010096f50100baf8010096f7010038f20100e2ab0000bc37010084ab00001e3a01003edf0000263a010088ab0000e4ab000070ac0000d8ab0000e0ab0000822701004427010042270100564801005cfb00000ae5000038b20400ee0a01008ac004003cb204003eb2040074b204007ab204003ab2040014b2040034b3040012b204005cb2040058b2040082d101002cca0000f2d00000fad0000038e20000
+    m_ExpandedInstanceIDs: ccd40000ec17010052190100ae40010036aa0000bcb50000d0a9000020ba0000b402010062eb03000000000046860100ae5a010094b001004e610100a2d1010038890300a6aa0000feaa0000d2530400a4530400aa890100b68f0100c28f0100c88f0100bc8f010096f50100baf8010096f7010038f20100e2ab0000bc37010084ab00001e3a01003edf0000263a010088ab0000e4ab000070ac0000d8ab0000e0ab0000822701004427010042270100564801005cfb00000ae5000038b20400ee0a01008ac004003cb204003eb2040074b204007ab204003ab2040014b2040034b3040012b204005cb2040058b2040082d101002cca0000f2d00000fad0000038e200008c470100084901009e4701009c470100
     m_RenameOverlay:
       m_UserAcceptedRename: 0
-      m_Name: 9033_hit
-      m_OriginalName: 9033_hit
+      m_Name: 
+      m_OriginalName: 
       m_EditFieldRect:
         serializedVersion: 2
         x: 0
         y: 0
         width: 0
         height: 0
-      m_UserData: 379522
+      m_UserData: 0
       m_IsWaitingForDelay: 0
       m_IsRenaming: 0
-      m_OriginalEventType: 0
+      m_OriginalEventType: 11
       m_IsRenamingFilename: 1
       m_ClientGUIView: {fileID: 2}
     m_CreateAssetUtility:
@@ -2978,7 +2978,7 @@ MonoBehaviour:
     m_ScrollPosition: {x: 0, y: 0}
     m_GridSize: 16
   m_SkipHiddenPackages: 0
-  m_DirectoriesAreaWidth: 163
+  m_DirectoriesAreaWidth: 144
 --- !u!114 &26
 MonoBehaviour:
   m_ObjectHideFlags: 52
@@ -2999,10 +2999,10 @@ MonoBehaviour:
     m_Tooltip: 
   m_Pos:
     serializedVersion: 2
-    x: 2285
-    y: 73
-    width: 274
-    height: 1278
+    x: 2258
+    y: 81
+    width: 293
+    height: 1262
   m_SerializedDataModeController:
     m_DataMode: 0
     m_PreferredDataMode: 0
@@ -3016,11 +3016,11 @@ MonoBehaviour:
   m_ObjectsLockedBeforeSerialization: []
   m_InstanceIDsLockedBeforeSerialization: 
   m_PreviewResizer:
-    m_CachedPref: 365
+    m_CachedPref: 475
     m_ControlHash: -371814159
     m_PrefName: Preview_InspectorPreview
   m_LastInspectedObjectInstanceID: -1
-  m_LastVerticalScrollValue: 205
+  m_LastVerticalScrollValue: 0
   m_GlobalObjectId: 
   m_InspectorMode: 0
   m_LockTracker:

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels